miscellaneous_grids 0.9.0

A few expandable tile grids.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use nalgebra::{Point2, Vector2};

pub mod multi_tile_grid;
pub mod tile_grid;
pub mod tile_rect;

#[cfg(test)]
mod tests {}

pub type TileIndex = Point2<isize>;
pub type TileIndexOffset = Vector2<isize>;