Type Alias Point

Source
pub type Point = Point3<f32>;

Aliased Type§

#[repr(C)]
pub struct Point { pub coords: Matrix<f32, Const<3>, Const<1>, ArrayStorage<f32, 3, 1>>, }

Fields§

§coords: Matrix<f32, Const<3>, Const<1>, ArrayStorage<f32, 3, 1>>

The coordinates of this point, i.e., the shift from the origin.