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