pub type Scale6<T> = Scale<T, 6>;
Expand description
A 6-dimensional scale.
Aliased Type§
struct Scale6<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 scale coordinates, i.e., how much is multiplied to a point’s coordinates when it is scaled.