Type Alias nalgebra::geometry::Translation5

source ·
pub type Translation5<T> = Translation<T, 5>;
Expand description

A 5-dimensional translation.

Aliased Type§

struct Translation5<T> {
    pub vector: Matrix<T, Const<5>, Const<1>, ArrayStorage<T, 5, 1>>,
}

Fields§

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

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