Type Alias nalgebra::geometry::Scale3

source ·
pub type Scale3<T> = Scale<T, 3>;
Expand description

A 3-dimensional scale.

Aliased Type§

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