Interface IGrid<TPoint, TCell>
An explicit shape that has for each of its points a value, called a cell, associated.
public interface IGrid<TPoint, TCell> : IGrid<TPoint>, IExplicitShape<TPoint>, IImplicitShape<TPoint>, IEnumerable<PointCellPair<TPoint, TCell>>, IEnumerable
Type Parameters
TPoint
Type of the Point.
TCell
Type of the Cell.
- Inherited Members
- Extension Methods
Properties
- Cells
Returns all the cells of this grid, that is, the values associated with all points in the grid.
- this[TPoint]
Gets or sets the cell at the specified point.