Type Alias Translation3

Source
pub type Translation3<T> = Translation<T, 3>;
Expand description

A 3-dimensional translation.

Aliased Type§

#[repr(C)]
pub struct Translation3<T> { pub vector: Matrix<T, Const<3>, Const<1>, ArrayStorage<T, 3, 1>>, }

Fields§

§vector: Matrix<T, Const<3>, Const<1>, ArrayStorage<T, 3, 1>>

The translation coordinates, i.e., how much is added to a point’s coordinates when it is translated.