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