omelet 0.1.2

A lightweight, game-orented math library for Rust, including vectors, matrices, and quaternions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod mat2;
pub mod mat3;
pub mod mat4;

//Re export
pub use mat2::Mat2;
pub use mat3::Mat3;
pub use mat4::Mat4;

//Tests
#[cfg(test)]
mod mat2_tests;

#[cfg(test)]
mod mat3_tests;

#[cfg(test)]
mod mat4_tests;