pub type Scale5<T> = Scale<T, 5>;
Expand description
A 5-dimensional scale.
Aliased Type§
struct Scale5<T> {
pub vector: Matrix<T, Const<5>, Const<1>, ArrayStorage<T, 5, 1>>,
}
Fields§
§vector: Matrix<T, Const<5>, Const<1>, ArrayStorage<T, 5, 1>>
The scale coordinates, i.e., how much is multiplied to a point’s coordinates when it is scaled.