1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! Mathematical algorithms library for Rust.
//! It's designed with ease of use in mind.
//! As well to be used as a library in [rhai](https://github.com/jonathandturner/rhai)

mod vec;
mod mat;
mod linear_algebra;

#[cfg(test)]
mod test;