Point3

Type Alias Point3 

Source
pub type Point3 = Point3<Real>;

Aliased Type§

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

Fields§

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

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

Trait Implementations§

Source§

impl Point3Ext for Point3

Source§

fn to_array(&self) -> [Real; 3]

Source§

fn as_vec3(&self) -> Vec3