Mat3

Type Alias Mat3 

Source
pub type Mat3 = Mat3x3;
Expand description

Matrix of f32s with 3 columns and 3 rows. Alignment 16, size 48.

Aliased Type§

#[repr(C, align(16))]
pub struct Mat3 { pub inner: [Vec3; 3], /* private fields */ }

Fields§

§inner: [Vec3; 3]