glam_matrix_extras 0.1.0

Matrix types and utilities for Glam.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Rectangular matrix types and utilities.

mod mat23;
mod mat32;

#[cfg(feature = "f64")]
pub use mat23::DMat23;
#[cfg(feature = "f32")]
pub use mat23::Mat23;
#[cfg(feature = "f64")]
pub use mat32::DMat32;
#[cfg(feature = "f32")]
pub use mat32::Mat32;