cgmath/src/lmath.rs
Brendan Zabarauskas 85e8677c9c Combine vec*.rs and mat*.rs files into two respective modules
I hate to do this as I find huge long files annoying, but it'll help work around some weird export bugs.
2013-03-31 17:27:59 +11:00

26 lines
520 B
Rust

#[link(name = "lmath",
vers = "0.1.0",
uuid = "A2DEEB53-EB35-4B44-B247-9044B57E3BA5",
author = "Brendan Zabarauskas",
url = "https://github.com/bjz/lmath-rs")];
#[comment = "A generic linear algebra library."];
#[license = "ASL2"];
#[crate_type = "lib"];
extern mod std;
extern mod numeric;
pub mod mat;
pub mod quat;
pub mod vec;
pub mod projection;
#[test]
mod test {
#[path = "test_mat.rs" ] mod mat;
#[path = "test_quat.rs"] mod quat;
#[path = "test_vec.rs" ] mod vec;
}