Expand description
A collection of basic 2D grids for use with the gridly grid library. This crate is intended to fill most basic use cases that require 2D grids, as well as serve as a sample implementation for how to implement gridly grids.
Structsยง
- Array
Grid - A grid backed by stack-allocated arrays.
- Sparse
Grid - A sparse grid, where most of the cells are some default grid.
- VecGrid
- A grid that stores its elements in a
Vec<T>
, in row-major order.