Matrix33

Type Alias Matrix33 

Source
pub type Matrix33 = Matrix<3, 3>;
Expand description

A 3x3 matrix, allocated on the stack.

Aliased Type§

pub struct Matrix33 {
    pub rows: [[f64; 3]; 3],
}

Fields§

§rows: [[f64; 3]; 3]

The elements of the matrix