pub type Mat4 = Mat4;Expand description
4x4 matrix type alias.
backed by glam::Mat4. useful for custom projection matrices and 3D transforms.
Aliased Type§
#[repr(C)]pub struct Mat4 {
pub x_axis: Vec4,
pub y_axis: Vec4,
pub z_axis: Vec4,
pub w_axis: Vec4,
}Fields§
§x_axis: Vec4§y_axis: Vec4§z_axis: Vec4§w_axis: Vec4