2015-10-09 13:02:54 -04:00
|
|
|
//! A mathematical library.
|
|
|
|
//! License: Proprietary
|
|
|
|
//!
|
|
|
|
//!
|
|
|
|
#![feature(float_extras)]
|
|
|
|
#![feature(associated_consts)]
|
2015-10-04 02:59:26 -04:00
|
|
|
|
|
|
|
|
2016-12-01 01:15:24 -05:00
|
|
|
#[macro_use]
|
|
|
|
mod macros;
|
|
|
|
|
2016-01-06 05:59:38 -05:00
|
|
|
mod zero;
|
|
|
|
mod one;
|
2015-10-09 13:02:54 -04:00
|
|
|
mod bounded;
|
2015-10-04 02:59:26 -04:00
|
|
|
mod number;
|
|
|
|
mod whole;
|
|
|
|
mod integer;
|
|
|
|
mod real;
|
2015-10-09 13:02:54 -04:00
|
|
|
mod constants;
|
2015-10-04 02:59:26 -04:00
|
|
|
|
2016-12-01 01:15:24 -05:00
|
|
|
mod trig;
|
2015-10-04 02:59:26 -04:00
|
|
|
pub mod vector;
|
2015-10-09 13:02:54 -04:00
|
|
|
pub mod matrix;
|
|
|
|
pub mod quaternion;
|
2015-10-04 02:59:26 -04:00
|
|
|
|
|
|
|
|
2016-01-06 05:59:38 -05:00
|
|
|
pub use self::zero::Zero;
|
|
|
|
pub use self::one::One;
|
2015-10-09 13:02:54 -04:00
|
|
|
pub use self::number::Number;
|
|
|
|
pub use self::whole::Whole;
|
|
|
|
pub use self::integer::Integer;
|
|
|
|
pub use self::real::Real;
|
|
|
|
pub use self::constants::Constants;
|
2016-12-01 01:15:24 -05:00
|
|
|
pub use self::trig::{Degree, Radian};
|