Type Alias nalgebra::geometry::Translation6

source ·
pub type Translation6<T> = Translation<T, 6>;
Expand description

A 6-dimensional translation.

Aliased Type§

struct Translation6<T> {
    pub vector: Matrix<T, Const<6>, Const<1>, ArrayStorage<T, 6, 1>>,
}

Fields§

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

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