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