Remove math module

This commit is contained in:
Brendan Zabarauskas 2012-11-20 15:36:29 +10:00
parent 491a82ec28
commit 3aad63bf2c
5 changed files with 0 additions and 11 deletions

View file

@ -1,3 +0,0 @@
pub trait ExactEq {
pure fn exact_eq(other: &self) -> bool;
}

View file

@ -23,11 +23,6 @@ mod test {
mod test_vec;
}
use common::*;
pub mod common {
pub mod math;
}
pub mod num {
pub mod cast;
pub mod consts;

View file

@ -8,7 +8,6 @@ use std::cmp::FuzzyEq;
use dim::Dimensional;
use funs::common::*;
use funs::exp::*;
use math::*;
use num::cast::*;
use num::default_eq::DefaultEq;
use quat::{Quat, ToQuat};

View file

@ -9,7 +9,6 @@ use dim::Dimensional;
use funs::exp::*;
use funs::trig::*;
use funs::common::*;
use math::*;
use mat::{Mat3, Mat4};
use num::cast::*;
use num::default_eq::DefaultEq;

View file

@ -7,7 +7,6 @@ use std::cmp::FuzzyEq;
use dim::Dimensional;
use funs::exp::Exp;
use math::*;
use num::cast::*;
use num::default_eq::DefaultEq;