Uses of Class
org.locationtech.jts.planargraph.Edge
-
Packages that use Edge Package Description org.locationtech.jts.operation.linemerge Classes to perform line merging.org.locationtech.jts.planargraph Contains classes to implement a planar graph data structure. -
-
Uses of Edge in org.locationtech.jts.operation.linemerge
Subclasses of Edge in org.locationtech.jts.operation.linemerge Modifier and Type Class Description class
LineMergeEdge
An edge of aLineMergeGraph
. -
Uses of Edge in org.locationtech.jts.planargraph
Methods in org.locationtech.jts.planargraph that return Edge Modifier and Type Method Description Edge
DirectedEdge. getEdge()
Returns this DirectedEdge's parent Edge, or null if it has none.Methods in org.locationtech.jts.planargraph with parameters of type Edge Modifier and Type Method Description void
Subgraph. add(Edge e)
Adds anEdge
to the subgraph.boolean
PlanarGraph. contains(Edge e)
Tests whether this graph contains the givenEdge
boolean
Subgraph. contains(Edge e)
Tests whether anEdge
is contained in this subgraphint
DirectedEdgeStar. getIndex(Edge edge)
Returns the zero-based index of the given Edge, after sorting in ascending order by angle with the positive x-axis.int
Node. getIndex(Edge edge)
Returns the zero-based index of the given Edge, after sorting in ascending order by angle with the positive x-axis.void
PlanarGraph. remove(Edge edge)
Removes anEdge
and its associatedDirectedEdge
s from their from-Nodes and from the graph.void
DirectedEdge. setEdge(Edge parentEdge)
Associates this DirectedEdge with an Edge (possibly null, indicating no associated Edge).
-