Move utility modules to src/common
This commit is contained in:
parent
aa304bedae
commit
02e3c70d65
3 changed files with 6 additions and 2 deletions
|
@ -10,12 +10,16 @@
|
||||||
extern mod std;
|
extern mod std;
|
||||||
|
|
||||||
pub mod matrix;
|
pub mod matrix;
|
||||||
pub mod math;
|
|
||||||
pub mod num_util;
|
|
||||||
pub mod projection;
|
pub mod projection;
|
||||||
pub mod quaternion;
|
pub mod quaternion;
|
||||||
pub mod vector;
|
pub mod vector;
|
||||||
|
|
||||||
|
use common::*;
|
||||||
|
pub mod common {
|
||||||
|
pub mod math;
|
||||||
|
pub mod num_util;
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
pub mod test {
|
pub mod test {
|
||||||
pub mod test_matrix;
|
pub mod test_matrix;
|
||||||
|
|
Loading…
Reference in a new issue