Skip to main content

Mat4

Type Alias Mat4 

Source
pub type Mat4 = Mat4x4;
Expand description

Matrix of f32s with 4 columns and 4 rows. Alignment 16, size 64.

Aliased Type§

pub struct Mat4 {
    pub inner: [Vec4; 4],
    /* private fields */
}

Fields§

§inner: [Vec4; 4]