Example #1
0
 public bool isPointConnected(GraphPoint id)
 {
     return(isPointConnected(id.getId()));
 }
Example #2
0
 public GraphConnection(GraphPoint gp1, GraphPoint gp2)
 {
     this.id1 = gp1.getId();
     this.id2 = gp2.getId();
 }