Type Alias all_is_cubes::math::FreeVector
source · pub type FreeVector = Vector3D<f64, Cube>;Expand description
Vectors that are not locked to the cube grid but may interact with it.
Aliased Type§
struct FreeVector {
pub x: f64,
pub y: f64,
pub z: f64,
}Fields§
§x: f64The x (traditionally, horizontal) coordinate.
y: f64The y (traditionally, vertical) coordinate.
z: f64The z (traditionally, depth) coordinate.