Class TaggedLineSegment
A LineSegment which is tagged with its location in a Geometry
.
Used to index the segments in a point and recover the segment locations
from the index.
Inheritance
TaggedLineSegment
Assembly: NetTopologySuite.dll
Syntax
public class TaggedLineSegment : LineSegment, IComparable<LineSegment>
Constructors
|
Improve this Doc
View Source
TaggedLineSegment(Coordinate, Coordinate)
Declaration
public TaggedLineSegment(Coordinate p0, Coordinate p1)
Parameters
|
Improve this Doc
View Source
TaggedLineSegment(Coordinate, Coordinate, Geometry, Int32)
Declaration
public TaggedLineSegment(Coordinate p0, Coordinate p1, Geometry parent, int index)
Parameters
Properties
|
Improve this Doc
View Source
Index
Declaration
public int Index { get; }
Property Value
|
Improve this Doc
View Source
Parent
Declaration
public Geometry Parent { get; }
Property Value
Implements