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