1 2 3 4
//! A really bad toy matrix library just so i can practice some rust. Don't use this. Use [Nalgebra](https://nalgebra.org/). pub mod error; pub mod matrix; pub mod vector;