Type Alias all_is_cubes::math::GridVector
source · pub type GridVector = Vector3D<i32, Cube>;Expand description
Vectors that are locked to the cube grid.
Aliased Type§
struct GridVector {
pub x: i32,
pub y: i32,
pub z: i32,
}Fields§
§x: i32The x (traditionally, horizontal) coordinate.
y: i32The y (traditionally, vertical) coordinate.
z: i32The z (traditionally, depth) coordinate.