Mat3

Type Alias Mat3 

Source
pub type Mat3 = Matrix<3, 3>;
Expand description

A 3x3 column-major matrix of f32 values, matching OpenGL and glTF conventions.

§Example

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

Aliased Type§

pub struct Mat3 { /* private fields */ }