1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*! Mint - Math interoperability standard types. Defines basic math types useful for computer graphics. Designed to serve as an interoperability standard between libraries. */ #![deny(missing_docs)] extern crate mint as future_self; mod matrix; mod rotation; mod vector; pub use matrix::*; pub use rotation::*; pub use vector::*;