pub type mat2x3 = Array<vec3, [Element<vec3>; 2]>;Expand description
Matrix of 2 x 3 floating-point values.
Aliased Type§
#[repr(C, align(16))]pub struct mat2x3(pub [Element<vec3>; 2], pub PhantomData<fn(vec3)>);Tuple Fields§
§0: [Element<vec3>; 2]§1: PhantomData<fn(vec3)>