mint 0.5.4

Math interoperability standard types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*!
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)]

mod matrix;
mod rotation;
mod vector;

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