cgmath/src/lmath.rc
Brendan Zabarauskas 9b1e984564 Add channel module
2012-11-28 17:50:26 +10:00

58 lines
980 B
Plaintext

#[link(name = "lmath",
vers = "0.1",
uuid = "A2DEEB53-EB35-4B44-B247-9044B57E3BA5",
author = "Brendan Zabarauskas",
url = "https://github.com/bjz/lmath-rs")];
#[comment = "A generic linear algebra library."];
#[license = "APL2"];
#[crate_type = "lib"];
extern mod std;
pub mod angle;
pub mod dim;
pub mod gltypes;
pub mod mat;
pub mod quat;
pub mod vec;
#[test]
mod test {
mod test_angle;
mod test_gltypes;
mod test_mat;
mod test_quat;
mod test_vec;
}
pub mod color {
pub mod channel;
#[test]
mod test {
mod test_channel;
}
}
pub mod funs {
pub mod common;
pub mod exponential;
pub mod projection;
pub mod relational;
pub mod triganomic;
#[test]
mod test {
mod test_common;
mod test_relational;
}
}
pub mod num {
pub mod cast;
pub mod consts;
pub mod default_eq;
pub mod ext;
pub mod rhs; // FIXME: see module description
}