Crate grud

source ·
Expand description

Store and access data in two-dimensional grids.

Simple use-cases can use the exported paths directly:

use grud::Grid;

let _ = Grid::new(2, 4, " ");

Other modules are included for additional functionality.

Re-exports

pub use grid::Grid;

Modules

Default implementation of a 2-dimensional grid of elements.
Utilities for defining and using 2-dimensional points in space (i.e. (x, y) coordinates).
Most used paths within Grud, that can be imported easily.