Type Alias jumpy::core::physics::collisions::rapier::nalgebra::Translation3

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

A 3-dimensional translation.

Aliased Type§

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.