cgmath/src/omath.rc

23 lines
425 B
Plaintext
Raw Normal View History

2012-09-08 08:54:32 +00:00
#[link(name = "omath",
2012-09-07 10:48:47 +00:00
vers = "0.1",
author = "Brendan Zabarauskas")];
#[comment = "Linear algebra library for Rust. Incomplete and probably buggy."];
#[crate_type = "lib"];
extern mod std;
2012-09-07 10:48:47 +00:00
2012-09-29 08:41:48 +00:00
pub mod mat;
pub mod math;
pub mod projection;
pub mod quat;
2012-10-28 11:43:23 +00:00
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;
}