Move projection.rs to funs module
This commit is contained in:
parent
3316a77192
commit
bc30f193e7
3 changed files with 1 additions and 8 deletions
|
@ -11,14 +11,12 @@
|
||||||
extern mod std;
|
extern mod std;
|
||||||
|
|
||||||
pub mod matrix;
|
pub mod matrix;
|
||||||
pub mod projection;
|
|
||||||
pub mod quaternion;
|
pub mod quaternion;
|
||||||
pub mod vector;
|
pub mod vector;
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
mod test {
|
mod test {
|
||||||
mod test_matrix;
|
mod test_matrix;
|
||||||
mod test_projection;
|
|
||||||
mod test_quaternion;
|
mod test_quaternion;
|
||||||
mod test_vector;
|
mod test_vector;
|
||||||
}
|
}
|
||||||
|
@ -34,6 +32,7 @@ pub mod funs {
|
||||||
pub mod boolv;
|
pub mod boolv;
|
||||||
pub mod common;
|
pub mod common;
|
||||||
pub mod exp;
|
pub mod exp;
|
||||||
|
pub mod projection;
|
||||||
pub mod relv;
|
pub mod relv;
|
||||||
pub mod transform;
|
pub mod transform;
|
||||||
pub mod trig;
|
pub mod trig;
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
// TODO
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_projection() {
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in a new issue