Type Alias nalgebra::geometry::Translation4

source ·
pub type Translation4<T> = Translation<T, 4>;
Expand description

A 4-dimensional translation.

Aliased Type§

struct Translation4<T> {
    pub vector: Matrix<T, Const<4>, Const<1>, ArrayStorage<T, 4, 1>>,
}

Fields§

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

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