Mat4

Type Alias Mat4 

Source
pub type Mat4 = Matrix<4, 4>;
Expand description

A 4x4 column-major matrix of f32 values, matching OpenGL and glTF conventions.

§Example

use vectorama::Mat4;
let m = Mat4::ones();

Aliased Type§

pub struct Mat4 { /* private fields */ }