Crate cell_grid

Source
Expand description

A simple fixed-size 2d grid container suitable for no_std game development

See Grid::new, Grid::new_with and Grid::from_row_major_iter for examples on how to create a grid.

§Features

  • std: (enabled by default) enable use of the standard library. Must be disabled for no_std crates.
  • aline: add conversions between Coord and aline vectors

Modules§

  • A 2d grid container that can grow after being created

Structs§

  • A coordinate of a grid
  • A 2d fixed-size grid containers for cells of type T
  • A rectangle of coordinates