Uses of Class
org.locationtech.jts.geomgraph.EdgeEnd
-
Packages that use EdgeEnd Package Description org.locationtech.jts.geomgraph Contains classes that implement topology graphs.org.locationtech.jts.operation.relate Contains classes to implement the computation of the spatial relationships ofGeometry
s. -
-
Uses of EdgeEnd in org.locationtech.jts.geomgraph
Subclasses of EdgeEnd in org.locationtech.jts.geomgraph Modifier and Type Class Description class
DirectedEdge
Methods in org.locationtech.jts.geomgraph that return EdgeEnd Modifier and Type Method Description EdgeEnd
PlanarGraph. findEdgeEnd(Edge e)
Returns the EdgeEnd which has edge e as its base edge (MD 18 Feb 2002 - this should return a pair of edges)EdgeEnd
EdgeEndStar. getNextCW(EdgeEnd ee)
Methods in org.locationtech.jts.geomgraph with parameters of type EdgeEnd Modifier and Type Method Description void
Node. add(EdgeEnd e)
Add the edge to the list of edges at this node.void
NodeMap. add(EdgeEnd e)
Adds a node for the start point of this EdgeEnd (if one does not already exist in this map).void
PlanarGraph. add(EdgeEnd e)
int
EdgeEnd. compareDirection(EdgeEnd e)
Implements the total order relation:int
EdgeEndStar. findIndex(EdgeEnd eSearch)
EdgeEnd
EdgeEndStar. getNextCW(EdgeEnd ee)
void
DirectedEdgeStar. insert(EdgeEnd ee)
Insert a directed edge in the listabstract void
EdgeEndStar. insert(EdgeEnd e)
Insert a EdgeEnd into this EdgeEndStar -
Uses of EdgeEnd in org.locationtech.jts.operation.relate
Subclasses of EdgeEnd in org.locationtech.jts.operation.relate Modifier and Type Class Description class
EdgeEndBundle
A collection ofEdgeEnd
s which obey the following invariant: They originate at the same node and have the same direction.Methods in org.locationtech.jts.operation.relate with parameters of type EdgeEnd Modifier and Type Method Description void
EdgeEndBundle. insert(EdgeEnd e)
void
EdgeEndBundleStar. insert(EdgeEnd e)
Insert a EdgeEnd in order in the list.Constructors in org.locationtech.jts.operation.relate with parameters of type EdgeEnd Constructor Description EdgeEndBundle(BoundaryNodeRule boundaryNodeRule, EdgeEnd e)
EdgeEndBundle(EdgeEnd e)
-