Type Alias Matrix3

Source
pub type Matrix3 = Mat3;
Expand description

A 3x3 column major matrix.

This 3x3 matrix type features convenience methods for creating and using linear and affine transformations.

Aliased Type§

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

Fields§

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