Class SegmentStringEx
Extension methods to mimic JTS' default methods on SegmentString interface
Inherited Members
Namespace: NetTopologySuite.Noding
Assembly: NetTopologySuite.dll
Syntax
public static class SegmentStringEx
Methods
| Edit this page View SourceGetCoordinate(ISegmentString, int)
Gets the segment string Coordinate
at a given index
Declaration
public static Coordinate GetCoordinate(this ISegmentString self, int idx)
Parameters
Type | Name | Description |
---|---|---|
ISegmentString | self | A segment string forming a ring |
int | idx | An index |
Returns
Type | Description |
---|---|
Coordinate | The |
NextInRing(ISegmentString, int)
Gets the next vertex in a ring from a vertex index.
Declaration
public static Coordinate NextInRing(this ISegmentString self, int index)
Parameters
Type | Name | Description |
---|---|---|
ISegmentString | self | A segment string forming a ring |
int | index | The vertex index |
Returns
Type | Description |
---|---|
Coordinate | The next vertex in the ring |
See Also
| Edit this page View SourcePrevInRing(ISegmentString, int)
Gets the previous vertex in a ring from a vertex index.
Declaration
public static Coordinate PrevInRing(this ISegmentString self, int index)
Parameters
Type | Name | Description |
---|---|---|
ISegmentString | self | A segment string forming a ring |
int | index | The vertex index |
Returns
Type | Description |
---|---|
Coordinate | The previous vertex in the ring |