2015-10-09 13:02:54 -04:00
|
|
|
//! A mathematical library.
|
|
|
|
//! License: Proprietary
|
|
|
|
//!
|
|
|
|
//!
|
2015-10-04 02:59:26 -04:00
|
|
|
#![feature(zero_one)]
|
2015-10-09 13:02:54 -04:00
|
|
|
#![feature(float_extras)]
|
|
|
|
#![feature(associated_consts)]
|
2015-10-04 02:59:26 -04:00
|
|
|
|
|
|
|
|
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
|
|
|
|
2015-10-09 13:02:54 -04:00
|
|
|
pub 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
|
|
|
|
|
|
|
|
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;
|