Uses of Interface
org.locationtech.jts.noding.SegmentString
-
Packages that use SegmentString Package Description org.locationtech.jts.noding Classes to compute nodings for arrangements of line segments and line segment sequences.org.locationtech.jts.noding.snap org.locationtech.jts.noding.snapround Contains classes to implement the Snap Rounding algorithm for noding linestrings. -
-
Uses of SegmentString in org.locationtech.jts.noding
Subinterfaces of SegmentString in org.locationtech.jts.noding Modifier and Type Interface Description interface
NodableSegmentString
An interface for classes which support adding nodes to a segment string.Classes in org.locationtech.jts.noding that implement SegmentString Modifier and Type Class Description class
BasicSegmentString
Represents a read-only list of contiguous line segments.class
NodedSegmentString
Represents a list of contiguous line segments, and supports noding the segments.Methods in org.locationtech.jts.noding with parameters of type SegmentString Modifier and Type Method Description void
SegmentStringDissolver. dissolve(SegmentString segString)
Dissolve the givenSegmentString
.void
SegmentStringDissolver.SegmentStringMerger. merge(SegmentString mergeTarget, SegmentString ssToMerge, boolean isSameOrientation)
Updates the context data of a SegmentString when an identical (up to orientation) one is found during dissolving.void
InteriorIntersectionFinderAdder. processIntersections(SegmentString e0, int segIndex0, SegmentString e1, int segIndex1)
This method is called by clients of theSegmentIntersector
class to process intersections for two segments of theSegmentString
s being intersected.void
IntersectionAdder. processIntersections(SegmentString e0, int segIndex0, SegmentString e1, int segIndex1)
This method is called by clients of theSegmentIntersector
class to process intersections for two segments of theSegmentString
s being intersected.void
IntersectionFinderAdder. processIntersections(SegmentString e0, int segIndex0, SegmentString e1, int segIndex1)
Deprecated.This method is called by clients of theSegmentIntersector
class to process intersections for two segments of theSegmentString
s being intersected.void
NodingIntersectionFinder. processIntersections(SegmentString e0, int segIndex0, SegmentString e1, int segIndex1)
This method is called by clients of theSegmentIntersector
class to process intersections for two segments of theSegmentString
s being intersected.void
SegmentIntersectionDetector. processIntersections(SegmentString e0, int segIndex0, SegmentString e1, int segIndex1)
This method is called by clients of theSegmentIntersector
class to process intersections for two segments of theSegmentString
s being intersected.void
SegmentIntersector. processIntersections(SegmentString e0, int segIndex0, SegmentString e1, int segIndex1)
This method is called by clients of theSegmentIntersector
interface to process intersections for two segments of theSegmentString
s being intersected.Constructors in org.locationtech.jts.noding with parameters of type SegmentString Constructor Description NodedSegmentString(SegmentString ss)
Creates a new instance from aSegmentString
. -
Uses of SegmentString in org.locationtech.jts.noding.snap
Methods in org.locationtech.jts.noding.snap with parameters of type SegmentString Modifier and Type Method Description void
SnappingIntersectionAdder. processIntersections(SegmentString seg0, int segIndex0, SegmentString seg1, int segIndex1)
This method is called by clients of theSegmentIntersector
class to process intersections for two segments of theSegmentString
s being intersected. -
Uses of SegmentString in org.locationtech.jts.noding.snapround
Methods in org.locationtech.jts.noding.snapround with parameters of type SegmentString Modifier and Type Method Description void
SnapRoundingIntersectionAdder. processIntersections(SegmentString e0, int segIndex0, SegmentString e1, int segIndex1)
This method is called by clients of theSegmentIntersector
class to process intersections for two segments of theSegmentString
s being intersected.boolean
MCIndexPointSnapper. snap(HotPixel hotPixel, SegmentString parentEdge, int hotPixelVertexIndex)
Snaps (nodes) all interacting segments to this hot pixel.Constructors in org.locationtech.jts.noding.snapround with parameters of type SegmentString Constructor Description HotPixelSnapAction(HotPixel hotPixel, SegmentString parentEdge, int hotPixelVertexIndex)
-