1
2
3
4
5
6
7
//! This is the math library for fumarole.

mod vec2;
mod mat2;

pub use vec2::*;
pub use mat2::*;