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