1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
/*!
Mint - Math interoperability standard types.

Defines basic math types useful for computer graphics.
Designed to serve as an interoperability standard between libraries.
*/
#![no_std]
#![deny(missing_docs)]

#[cfg(feature = "serde")]
extern crate serde;

mod matrix;
mod rotation;
mod vector;

pub use matrix::*;
pub use rotation::*;
pub use vector::*;