Info
Every grid exports some basic details about what sort of grid it is.
Is2d
Are the cells flat surfaces. Note: the flat shapes can still rotate in all dimensions. The surface of a cube is 2d.
Is3d
Are the cells 3d shapes like polyhedra.
IsPlanar
Are the cells confined to the XY plane. Implies Is2d.
IsRepeating
Does this grid use the same cell shapes over and over.
IsOrientable
A non-orientable grid some paths on the grid end up mirroring your as you travel them.
IsFinite
Is there a finite number of cells in the grid. Infinite grids don't support some operations. You can often limit an infinite grid to a finite one with bounds or the mask modifier.
IsSingleCellType
Do all cells of the grid share a single cell type.
GetCellTypes
All the cell types used by this grid.