Uses of Class
com.vividsolutions.jts.planargraph.Node
-
Packages that use Node Package Description 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 Node in com.vividsolutions.jts.operation.linemerge
Constructors in com.vividsolutions.jts.operation.linemerge with parameters of type Node Constructor Description LineMergeDirectedEdge(Node from, Node to, Coordinate directionPt, boolean edgeDirection)Constructs a LineMergeDirectedEdge connecting thefromnode to thetonode. -
Uses of Node in com.vividsolutions.jts.planargraph
Fields in com.vividsolutions.jts.planargraph declared as Node Modifier and Type Field Description protected NodeDirectedEdge. fromprotected NodeDirectedEdge. toMethods in com.vividsolutions.jts.planargraph that return Node Modifier and Type Method Description NodeNodeMap. add(Node n)Adds a node to the map, replacing any that is already at that location.NodeNodeMap. find(Coordinate coord)Returns the Node at the given location, or null if no Node was there.NodePlanarGraph. findNode(Coordinate pt)NodeDirectedEdge. getFromNode()Returns the node from which this DirectedEdge leaves.NodeEdge. getOppositeNode(Node node)Ifnodeis one of the two nodes associated with this Edge, returns the other node; otherwise returns null.NodeDirectedEdge. getToNode()Returns the node to which this DirectedEdge goes.NodeNodeMap. remove(Coordinate pt)Removes the Node at the given location, and returns it (or null if no Node was there).Methods in com.vividsolutions.jts.planargraph with parameters of type Node Modifier and Type Method Description NodeNodeMap. add(Node n)Adds a node to the map, replacing any that is already at that location.protected voidPlanarGraph. add(Node node)Adds a node to the map, replacing any that is already at that location.DirectedEdgeEdge. getDirEdge(Node fromNode)Returns theDirectedEdgethat starts from the given node, or null if the node is not one of the two nodes associated with this Edge.static java.util.CollectionNode. getEdgesBetween(Node node0, Node node1)Returns all Edges that connect the two nodes (which are assumed to be different).NodeEdge. getOppositeNode(Node node)Ifnodeis one of the two nodes associated with this Edge, returns the other node; otherwise returns null.voidPlanarGraph. remove(Node node)Removes a node from the graph, along with any associated DirectedEdges and Edges.Constructors in com.vividsolutions.jts.planargraph with parameters of type Node Constructor Description DirectedEdge(Node from, Node to, Coordinate directionPt, boolean edgeDirection)Constructs a DirectedEdge connecting thefromnode to thetonode.
-