cgmath/src/lmath.rc

49 lines
850 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-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
2012-11-25 16:26:01 +00:00
pub mod angle;
pub mod dim;
pub mod gltypes;
pub mod mat;
pub mod quat;
pub mod vec;
2012-10-28 11:43:23 +00:00
2012-11-05 10:31:52 +00:00
#[test]
mod test {
2012-11-26 01:22:49 +00:00
mod test_angle;
2012-11-21 04:33:20 +00:00
mod test_gltypes;
mod test_mat;
mod test_quat;
mod test_vec;
2012-11-05 10:31:52 +00:00
}
pub mod num {
pub mod cast;
pub mod consts;
2012-11-20 02:55:02 +00:00
pub mod default_eq;
pub mod ext;
2012-11-26 04:52:44 +00:00
pub mod rhs; // FIXME: see module description
2012-11-01 23:15:57 +00:00
}
pub mod funs {
pub mod common;
pub mod exponential;
2012-11-07 02:38:44 +00:00
pub mod projection;
pub mod relational;
pub mod triganomic;
2012-11-05 10:31:52 +00:00
#[test]
mod test {
mod test_common;
mod test_relational;
2012-11-05 10:31:52 +00:00
}
2012-10-28 11:43:23 +00:00
}