pub type mat3x2 = Array<vec2, [Element<vec2>; 3]>;
Expand description
Matrix of 3 x 2 floating-point values.
Aliased Type§
struct mat3x2(pub [Element<vec2>; 3], pub PhantomData<fn(_: vec2)>);
Fields§
§0: [Element<vec2>; 3]
§1: PhantomData<fn(_: vec2)>