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§

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