omelet/
lib.rs

1//! 🥚 Omelet - A Simple Math Library for Games and Graphics
2//!
3//!  Omelet provides vector, matrix, and quaternion types with clean APIs and full test coverage.
4//! It's built for game devs, graphics programmers, and anyone needing fast, clear math tools.
5//!
6//! # Features
7//! - Vec2, Vec3, Vec4 types
8//! - Mat2, Mat3, Mat4 with common transforms
9//! - Quat with SLERP, Euler conversion, and more
10//! - Operator overloading, epsilon-aware comparisons
11//! - Extensive testing and documentation
12
13pub mod matrices;
14pub mod quaternion;
15pub mod utils;
16pub mod vec;
17
18pub use matrices::{mat2, mat3, mat4};
19pub use quaternion::Quat;
20pub use utils::epsilon_eq;
21pub use vec::{vec2, vec3, vec4};