cgmath/src/lmath.rc

26 lines
506 B
Plaintext
Raw Normal View History

#[link(name = "lmath",
2012-09-07 10:48:47 +00:00
vers = "0.1",
2012-11-01 01:59:53 +00:00
author = "Brendan Zabarauskas",
2012-11-01 05:58:36 +00:00
url = "https://github.com/bjz/llama-rs")];
2012-09-07 10:48:47 +00:00
2012-11-01 01:59:53 +00:00
#[comment = "A generic linear algebra library."];
2012-11-01 01:59:21 +00:00
#[license = "APL2"];
2012-09-07 10:48:47 +00:00
#[crate_type = "lib"];
extern mod std;
2012-09-07 10:48:47 +00:00
pub mod matrix;
2012-09-29 08:41:48 +00:00
pub mod math;
2012-11-01 01:34:38 +00:00
pub mod num_util;
2012-09-29 08:41:48 +00:00
pub mod projection;
pub mod quaternion;
pub mod vector;
2012-10-28 11:43:23 +00:00
#[test]
pub mod test {
pub mod test_matrix;
2012-10-28 11:43:23 +00:00
pub mod test_math;
pub mod test_projection;
pub mod test_quaternion;
pub mod test_vector;
2012-10-28 11:43:23 +00:00
}