Uses of Interface
org.locationtech.jts.noding.Noder
-
Packages that use Noder Package Description org.locationtech.jts.noding Classes to compute nodings for arrangements of line segments and line segment sequences.org.locationtech.jts.noding.snapround Contains classes to implement the Snap Rounding algorithm for noding linestrings.org.locationtech.jts.operation.buffer Provides classes for computing buffers of geometries -
-
Uses of Noder in org.locationtech.jts.noding
Classes in org.locationtech.jts.noding that implement Noder Modifier and Type Class Description class
IteratedNoder
Nodes a set ofNodedSegmentString
s completely.class
MCIndexNoder
class
ScaledNoder
Wraps aNoder
and transforms its input into the integer domain.class
SimpleNoder
Nodes a set ofSegmentString
s by performing a brute-force comparison of every segment to every other one.class
SinglePassNoder
Base class forNoder
s which make a single pass to find intersections.Fields in org.locationtech.jts.noding declared as Noder Modifier and Type Field Description private Noder
ScaledNoder. noder
Constructors in org.locationtech.jts.noding with parameters of type Noder Constructor Description ScaledNoder(Noder noder, double scaleFactor)
ScaledNoder(Noder noder, double scaleFactor, double offsetX, double offsetY)
-
Uses of Noder in org.locationtech.jts.noding.snapround
Classes in org.locationtech.jts.noding.snapround that implement Noder Modifier and Type Class Description class
MCIndexSnapRounder
Uses Snap Rounding to compute a rounded, fully noded arrangement from a set ofSegmentString
s.class
SimpleSnapRounder
Uses Snap Rounding to compute a rounded, fully noded arrangement from a set ofSegmentString
s. -
Uses of Noder in org.locationtech.jts.operation.buffer
Fields in org.locationtech.jts.operation.buffer declared as Noder Modifier and Type Field Description private Noder
BufferBuilder. workingNoder
Methods in org.locationtech.jts.operation.buffer that return Noder Modifier and Type Method Description private Noder
BufferBuilder. getNoder(PrecisionModel precisionModel)
Methods in org.locationtech.jts.operation.buffer with parameters of type Noder Modifier and Type Method Description void
BufferBuilder. setNoder(Noder noder)
Sets theNoder
to use during noding.
-