pub type SymmetricMatrix2 = SymmetricMat2;Expand description
The 2x2 matrix type used by Avian.
Aliased Type§
pub struct SymmetricMatrix2 {
pub m00: f32,
pub m01: f32,
pub m11: f32,
}Fields§
§m00: f32The first element of the first column.
m01: f32The second element of the first column.
m11: f32The second element of the second column.