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