Skip to main content

Mat3

Type Alias Mat3 

Source
pub type Mat3 = Mat3;
Expand description

3x3 matrix type alias.

backed by glam::Mat3. useful for 2D affine transforms and normal matrix computation.

Aliased Type§

#[repr(C)]
pub struct Mat3 { pub x_axis: Vec3, pub y_axis: Vec3, pub z_axis: Vec3, }

Fields§

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