Uses of Class
com.vividsolutions.jts.planargraph.Edge

Packages that use Edge
com.vividsolutions.jts.operation.linemerge Classes to perform line merging. 
com.vividsolutions.jts.planargraph Contains classes to implement a planar graph data structure. 
 

Uses of Edge in com.vividsolutions.jts.operation.linemerge
 

Subclasses of Edge in com.vividsolutions.jts.operation.linemerge
 class LineMergeEdge
          An edge of a LineMergeGraph.
 

Uses of Edge in com.vividsolutions.jts.planargraph
 

Fields in com.vividsolutions.jts.planargraph declared as Edge
protected  Edge DirectedEdge.parentEdge
           
 

Methods in com.vividsolutions.jts.planargraph that return Edge
 Edge DirectedEdge.getEdge()
          Returns this DirectedEdge's parent Edge, or null if it has none.
 

Methods in com.vividsolutions.jts.planargraph with parameters of type Edge
 void Subgraph.add(Edge e)
          Adds an Edge to the subgraph.
protected  void PlanarGraph.add(Edge edge)
          Adds the Edge and its DirectedEdges with this PlanarGraph.
 boolean Subgraph.contains(Edge e)
          Tests whether an Edge is contained in this subgraph
 boolean PlanarGraph.contains(Edge e)
          Tests whether this graph contains the given Edge
 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.
 int 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.
 void PlanarGraph.remove(Edge edge)
          Removes an Edge and its associated DirectedEdges 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).
 



Copyright © 2012. All Rights Reserved.