Uses of Class
org.locationtech.jts.geomgraph.EdgeRing
-
Packages that use EdgeRing Package Description org.locationtech.jts.geomgraph Contains classes that implement topology graphs.org.locationtech.jts.operation.overlay Contains classes that perform a topological overlay to compute boolean spatial functions. -
-
Uses of EdgeRing in org.locationtech.jts.geomgraph
Fields in org.locationtech.jts.geomgraph declared as EdgeRing Modifier and Type Field Description private EdgeRing
DirectedEdge. edgeRing
private EdgeRing
DirectedEdge. minEdgeRing
private EdgeRing
EdgeRing. shell
Methods in org.locationtech.jts.geomgraph that return EdgeRing Modifier and Type Method Description EdgeRing
DirectedEdge. getEdgeRing()
EdgeRing
DirectedEdge. getMinEdgeRing()
EdgeRing
EdgeRing. getShell()
Methods in org.locationtech.jts.geomgraph with parameters of type EdgeRing Modifier and Type Method Description void
EdgeRing. addHole(EdgeRing ring)
int
DirectedEdgeStar. getOutgoingDegree(EdgeRing er)
void
DirectedEdgeStar. linkMinimalDirectedEdges(EdgeRing er)
void
DirectedEdge. setEdgeRing(EdgeRing edgeRing)
abstract void
EdgeRing. setEdgeRing(DirectedEdge de, EdgeRing er)
void
DirectedEdge. setMinEdgeRing(EdgeRing minEdgeRing)
void
EdgeRing. setShell(EdgeRing shell)
-
Uses of EdgeRing in org.locationtech.jts.operation.overlay
Subclasses of EdgeRing in org.locationtech.jts.operation.overlay Modifier and Type Class Description class
MaximalEdgeRing
A ring ofDirectedEdge
s which may contain nodes of degree > 2.class
MinimalEdgeRing
A ring ofEdge
s with the property that no node has degree greater than 2.Methods in org.locationtech.jts.operation.overlay that return EdgeRing Modifier and Type Method Description private EdgeRing
PolygonBuilder. findEdgeRingContaining(EdgeRing testEr, java.util.List shellList)
Find the innermost enclosing shell EdgeRing containing the argument EdgeRing, if any.private EdgeRing
PolygonBuilder. findShell(java.util.List minEdgeRings)
This method takes a list of MinimalEdgeRings derived from a MaximalEdgeRing, and tests whether they form a Polygon.Methods in org.locationtech.jts.operation.overlay with parameters of type EdgeRing Modifier and Type Method Description private EdgeRing
PolygonBuilder. findEdgeRingContaining(EdgeRing testEr, java.util.List shellList)
Find the innermost enclosing shell EdgeRing containing the argument EdgeRing, if any.private void
PolygonBuilder. placePolygonHoles(EdgeRing shell, java.util.List minEdgeRings)
This method assigns the holes for a Polygon (formed from a list of MinimalEdgeRings) to its shell.void
MaximalEdgeRing. setEdgeRing(DirectedEdge de, EdgeRing er)
void
MinimalEdgeRing. setEdgeRing(DirectedEdge de, EdgeRing er)
-