Remove math module
This commit is contained in:
parent
491a82ec28
commit
3aad63bf2c
5 changed files with 0 additions and 11 deletions
|
@ -1,3 +0,0 @@
|
|||
pub trait ExactEq {
|
||||
pure fn exact_eq(other: &self) -> bool;
|
||||
}
|
|
@ -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;
|
||||
|
|
|
@ -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};
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue