Uses of Class
org.locationtech.jts.geomgraph.Edge
-
Packages that use Edge Package Description org.locationtech.jts.geomgraph Contains classes that implement topology graphs.org.locationtech.jts.geomgraph.index Contains classes that implement indexes for performing noding on geometry graph edges.org.locationtech.jts.operation.relate Contains classes to implement the computation of the spatial relationships ofGeometry
s. -
-
Uses of Edge in org.locationtech.jts.geomgraph
Methods in org.locationtech.jts.geomgraph that return Edge Modifier and Type Method Description Edge
GeometryGraph. findEdge(LineString line)
Edge
PlanarGraph. findEdge(Coordinate p0, Coordinate p1)
Returns the edge whose first two coordinates are p0 and p1Edge
PlanarGraph. findEdgeInSameDirection(Coordinate p0, Coordinate p1)
Returns the edge which starts at p0 and whose first segment is parallel to p1Edge
EdgeList. findEqualEdge(Edge e)
If there is an edge equal to e already in the list, return it.Edge
EdgeList. get(int i)
Edge
Edge. getCollapsedEdge()
Edge
DirectedEdge. getEdge()
Edge
EdgeEnd. getEdge()
Methods in org.locationtech.jts.geomgraph with parameters of type Edge Modifier and Type Method Description void
EdgeList. add(Edge e)
Insert an edge unless it is already in the listvoid
GeometryGraph. addEdge(Edge e)
Add an Edge computed externally.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)int
EdgeList. findEdgeIndex(Edge e)
If the edge e is already in the list, return its index.Edge
EdgeList. findEqualEdge(Edge e)
If there is an edge equal to e already in the list, return it.boolean
Edge. isPointwiseEqual(Edge e)
Check if coordinate sequences of the Edges are identical.Constructors in org.locationtech.jts.geomgraph with parameters of type Edge Constructor Description DirectedEdge(Edge edge, boolean isForward)
EdgeEnd(Edge edge, Coordinate p0, Coordinate p1)
EdgeEnd(Edge edge, Coordinate p0, Coordinate p1, Label label)
EdgeIntersectionList(Edge edge)
-
Uses of Edge in org.locationtech.jts.geomgraph.index
Methods in org.locationtech.jts.geomgraph.index with parameters of type Edge Modifier and Type Method Description void
SegmentIntersector. addIntersections(Edge e0, int segIndex0, Edge e1, int segIndex1)
This method is called by clients of the EdgeIntersector class to test for and add intersections for two segments of the edges being intersected.Constructors in org.locationtech.jts.geomgraph.index with parameters of type Edge Constructor Description MonotoneChainEdge(Edge e)
SweepLineSegment(Edge edge, int ptIndex)
-
Uses of Edge in org.locationtech.jts.operation.relate
Methods in org.locationtech.jts.operation.relate with parameters of type Edge Modifier and Type Method Description void
EdgeEndBuilder. computeEdgeEnds(Edge edge, java.util.List l)
Creates stub edges for all the intersections in this Edge (if any) and inserts them into the graph.
-