示例#1
0
 public bool IsFilled(TopologyHelper.Point point)
 {
     return(this[point.X, point.Y].Type != CellType.Free && this[point.X, point.Y].Type != CellType.OutsideElement);
 }
示例#2
0
 public Cell this[TopologyHelper.Point p]
 {
     get { return(this[p.X, p.Y]); }
 }