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 vec2;
pub mod vec3;
pub mod vec4;

//Re export
pub use vec2::Vec2;
pub use vec3::Vec3;
pub use vec4::Vec4;

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

#[cfg(test)]
mod vec3_tests;

#[cfg(test)]
mod vec4_tests;