Skip to main content

Point3

Type Alias Point3 

Source
pub type Point3 = Point3<f64>;
Expand description

A position in 3D. nalgebra::Point3<f64> (ADR-0001).

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.