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;
|
||||
|
||||
pub mod matrix;
|
||||
pub mod math;
|
||||
pub mod num_util;
|
||||
pub mod projection;
|
||||
pub mod quaternion;
|
||||
pub mod vector;
|
||||
|
||||
use common::*;
|
||||
pub mod common {
|
||||
pub mod math;
|
||||
pub mod num_util;
|
||||
}
|
||||
|
||||
#[test]
|
||||
pub mod test {
|
||||
pub mod test_matrix;
|
||||
|
|
Loading…
Reference in a new issue