Esempio n. 1
0
 public Point Diff(Cell c)
 {
     return(Diff(c.cp));
 }
Esempio n. 2
0
 public int Dist2(Cell c)
 {
     return(Dist2(c.cp));
 }
Esempio n. 3
0
 public void Link(Cell c, Dir d)
 {
     this[d]      = c;
     c[Rot180(d)] = this;
 }