Type Alias nalgebra::geometry::Scale4

source ·
pub type Scale4<T> = Scale<T, 4>;
Expand description

A 4-dimensional scale.

Aliased Type§

struct Scale4<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 scale coordinates, i.e., how much is multiplied to a point’s coordinates when it is scaled.