cgmath/src/lmath.rc

33 lines
652 B
Plaintext
Raw Normal View History

#[link(name = "lmath",
2012-09-07 10:48:47 +00:00
vers = "0.1",
2012-11-02 03:59:51 +00:00
uuid = "A2DEEB53-EB35-4B44-B247-9044B57E3BA5",
2012-11-01 01:59:53 +00:00
author = "Brendan Zabarauskas",
2012-11-06 04:03:14 +00:00
url = "https://github.com/bjz/lmath-rs")];
2012-09-07 10:48:47 +00:00
2012-11-01 01:59:53 +00:00
#[comment = "A generic linear algebra library."];
2012-12-18 02:26:35 +00:00
#[license = "ASL2"];
2012-09-07 10:48:47 +00:00
#[crate_type = "lib"];
extern mod std;
extern mod numeric;
2012-09-07 10:48:47 +00:00
pub mod mat;
2013-01-25 21:41:23 +00:00
pub mod mat2;
pub mod mat3;
pub mod mat4;
pub mod quat;
pub mod rot;
pub mod vec;
2013-01-25 21:41:23 +00:00
pub mod vec2;
pub mod vec3;
pub mod vec4;
2012-10-28 11:43:23 +00:00
2013-01-27 22:22:15 +00:00
pub mod projection;
2012-11-05 10:31:52 +00:00
#[test]
mod test {
#[path = "test_mat.rs" ] mod mat;
#[path = "test_quat.rs"] mod quat;
#[path = "test_rot.rs" ] mod rot;
#[path = "test_vec.rs" ] mod vec;
2013-01-29 09:27:07 +00:00
}