cgmath/src/omath.rc
2012-10-28 21:43:23 +10:00

23 lines
425 B
Plaintext

#[link(name = "omath",
vers = "0.1",
author = "Brendan Zabarauskas")];
#[comment = "Linear algebra library for Rust. Incomplete and probably buggy."];
#[crate_type = "lib"];
extern mod std;
pub mod mat;
pub mod math;
pub mod projection;
pub mod quat;
pub mod vec;
#[test]
pub mod test {
pub mod test_mat;
pub mod test_math;
pub mod test_projection;
pub mod test_quat;
pub mod test_vec;
}