pub trait Algorithm3D: BaseMap {
    fn point3d_to_index(&self, pt: Point3) -> usize { ... }
    fn index_to_point3d(&self, idx: usize) -> Point3 { ... }
    fn dimensions(&self) -> Point3 { ... }
    fn in_bounds(&self, pos: Point3) -> bool { ... }
}
Expand description

Implement these for handling conversion to/from 2D coordinates (they are separate, because you might want Dwarf Fortress style 3D!)

Provided Methods

Convert a Point (x/y) to an array index. Defaults to a Z, Y, X striding.

Convert an array index to a point.

Dimensions

Implementors