Class TaggedLinesSimplifier
Simplifies a collection of TaggedLineString
s, 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.
Inherited Members
Namespace: NetTopologySuite.Simplify
Assembly: NetTopologySuite.dll
Syntax
public class TaggedLinesSimplifier
Properties
| Improve this Doc View SourceDistanceTolerance
Gets or sets the distance tolerance for the simplification.
Points closer than this tolerance to a simplified segment may
be removed.
Declaration
public double DistanceTolerance { get; set; }
Property Value
Type | Description |
---|---|
Double |
Methods
| Improve this Doc View SourceSimplify(ICollection<TaggedLineString>)
Simplifies a collection of TaggedLineString
s.
Declaration
public void Simplify(ICollection<TaggedLineString> taggedLines)
Parameters
Type | Name | Description |
---|---|---|
ICollection<TaggedLineString> | taggedLines | The collection of lines to simplify. |