Matrix44

Type Alias Matrix44 

Source
pub type Matrix44 = Matrix<4, 4>;
Expand description

A 4x4 matrix, allocated on the stack.

Aliased Type§

pub struct Matrix44 {
    pub rows: [[f64; 4]; 4],
}

Fields§

§rows: [[f64; 4]; 4]

The elements of the matrix