Move projection.rs to funs module

This commit is contained in:
Brendan Zabarauskas 2012-11-07 12:38:44 +10:00
parent 3316a77192
commit bc30f193e7
3 changed files with 1 additions and 8 deletions

View file

@ -11,14 +11,12 @@
extern mod std;
pub mod matrix;
pub mod projection;
pub mod quaternion;
pub mod vector;
#[test]
mod test {
mod test_matrix;
mod test_projection;
mod test_quaternion;
mod test_vector;
}
@ -34,6 +32,7 @@ pub mod funs {
pub mod boolv;
pub mod common;
pub mod exp;
pub mod projection;
pub mod relv;
pub mod transform;
pub mod trig;

View file

@ -1,6 +0,0 @@
// TODO
#[test]
fn test_projection() {
}