[][src]Crate gridly_grids

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

SparseGrid

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.