Type Alias Vector3

Source
pub type Vector3<N> = Matrix<N, U3, U1, <DefaultAllocator as Allocator<N, U3>>::Buffer>;
Expand description

A stack-allocated, 3-dimensional column vector.

Aliased Type§

#[repr(C)]
pub struct Vector3<N> { pub data: <DefaultAllocator as Allocator<N, U3>>::Buffer, /* private fields */ }

Fields§

§data: <DefaultAllocator as Allocator<N, U3>>::Buffer

The data storage that contains all the matrix components and informations about its number of rows and column (if needed).