1
2
3
4
5
6
7
//!Simple, easy to understand and barebones math library for game and graphics development.

/// Square floating point matrices of orders 2-4
pub mod mat;

/// 2D, 3D and 4D floating point vectors.
pub mod vec;