Type Alias avian3d::math::Matrix

source ·
pub type Matrix = Mat3;
Expand description

The dimension-specific matrix type used by Avian.

Aliased Type§

struct Matrix {
    pub x_axis: Vec3,
    pub y_axis: Vec3,
    pub z_axis: Vec3,
}

Fields§

§x_axis: Vec3§y_axis: Vec3§z_axis: Vec3