Type Alias Point3

Source
pub type Point3 = Point3<f32>;

Aliased Type§

#[repr(C)]
pub struct Point3 { 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.