Matrix22

Type Alias Matrix22 

Source
pub type Matrix22 = Matrix<2, 2>;
Expand description

A 2x2 matrix, allocated on the stack.

Aliased Type§

pub struct Matrix22 {
    pub rows: [[f64; 2]; 2],
}

Fields§

§rows: [[f64; 2]; 2]

The elements of the matrix