Type Alias SymmetricMatrix3

Source
pub type SymmetricMatrix3 = SymmetricMat3;
Expand description

The 3x3 matrix type used by Avian.

Aliased Type§

pub struct SymmetricMatrix3 {
    pub m00: f32,
    pub m01: f32,
    pub m02: f32,
    pub m11: f32,
    pub m12: f32,
    pub m22: f32,
}

Fields§

§m00: f32

The first element of the first column.

§m01: f32

The second element of the first column.

§m02: f32

The third element of the first column.

§m11: f32

The second element of the second column.

§m12: f32

The third element of the second column.

§m22: f32

The third element of the third column.