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