create method

void create(
  1. Node node
)

Creates the subgraph consisting of all edges reachable from this node. Finds the edges in the graph and the rightmost coordinate.

@param node a node to start the graph traversal from

Implementation

void create(Node node) {
  addReachable(node);
  finder.findEdge(dirEdgeList);
  rightMostCoord = finder.getCoordinate();
}