Mat2

Type Alias Mat2 

Source
pub type Mat2 = Mat2x2;
Expand description

Matrix of f32s with 2 columns and 2 rows. Alignment 8, size 16.

Aliased Type§

#[repr(C, align(8))]
pub struct Mat2 { pub inner: [Vec2; 2], /* private fields */ }

Fields§

§inner: [Vec2; 2]