pub type Point3 = OPoint<f32, Const<3>>;Expand description
3-dimensional point.
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.