Package org.locationtech.jts.noding
Interface NodableSegmentString
-
- All Superinterfaces:
SegmentString
- All Known Implementing Classes:
NodedSegmentString
public interface NodableSegmentString extends SegmentString
An interface for classes which support adding nodes to a segment string.- Author:
- Martin Davis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddIntersection(Coordinate intPt, int segmentIndex)Adds an intersection node for a given point and segment to this segment string.-
Methods inherited from interface org.locationtech.jts.noding.SegmentString
getCoordinate, getCoordinates, getData, isClosed, setData, size
-
-
-
-
Method Detail
-
addIntersection
void addIntersection(Coordinate intPt, int segmentIndex)
Adds an intersection node for a given point and segment to this segment string.- Parameters:
intPt- the location of the intersectionsegmentIndex- the index of the segment containing the intersection
-
-