Uses of Class
nanomunchers.graph.Edge

Packages that use Edge
nanomunchers.graph The Graph is the board where the nanomuncher feeds. 
nanomunchers.ui Wide range of classes due to the diverse user interface. 
 

Uses of Edge in nanomunchers.graph
 

Fields in nanomunchers.graph declared as Edge
protected  Edge[] GridGraph.edges
           
 

Methods in nanomunchers.graph that return Edge
 Edge[] GridGraph.getUniqueEdges()
           
 Edge[] GridGraph.getNeighbors(Node n)
           
 Edge[] Graph.getUniqueEdges()
           
 Edge[] Graph.getNeighbors(Node n)
           
 

Methods in nanomunchers.graph with parameters of type Edge
static Graph GraphFactory.buildFromParts(Node[] nodes, Edge[] edges)
          Creats a new graph from a set of nodes and edges
 boolean Edge.isNeighbor(Edge e)
           
 boolean Edge.equalsSpacially(Edge b)
          Examines the points that make up both edges as opposed to the nodes that surround those points.
 

Uses of Edge in nanomunchers.ui
 

Methods in nanomunchers.ui with parameters of type Edge
 void Drawing.drawEdge(java.awt.Graphics g, java.awt.Color c, Edge e, int thickness)
           
 void Drawing.highlightEdge(java.awt.Graphics g, java.awt.Color c, Edge e, int thickness)
          Similar to draw edge, but also draws the end nodes.