Skip to main content

Point3

Type Alias Point3 

Source
pub type Point3<N> = Point<N, U3>;
Expand description

A statically sized 3-dimensional column point.

Aliased Type§

#[repr(C)]
pub struct Point3<N> { pub coords: Matrix<N, U3, U1, <DefaultAllocator as Allocator<N, U3>>::Buffer>, }

Fields§

§coords: Matrix<N, U3, U1, <DefaultAllocator as Allocator<N, U3>>::Buffer>

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