Table of Contents

Class TaggedLinesSimplifier

Namespace
NetTopologySuite.Simplify
Assembly
NetTopologySuite.dll

Simplifies a collection of TaggedLineStrings, preserving topology (in the sense that no new intersections are introduced). This class is essentially just a container for the common indexes used by TaggedLineStringSimplifier.

public class TaggedLinesSimplifier
Inheritance
TaggedLinesSimplifier
Inherited Members

Constructors

TaggedLinesSimplifier()

public TaggedLinesSimplifier()

Properties

DistanceTolerance

Gets or sets the distance tolerance for the simplification.
Points closer than this tolerance to a simplified segment may be removed.

public double DistanceTolerance { get; set; }

Property Value

double

Methods

Simplify(ICollection<TaggedLineString>)

Simplifies a collection of TaggedLineStrings.

public void Simplify(ICollection<TaggedLineString> taggedLines)

Parameters

taggedLines ICollection<TaggedLineString>

The collection of lines to simplify.