cgmath/src/omath.rc

14 lines
260 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
mod mat;
2012-09-08 05:54:31 +00:00
mod math;
2012-09-07 10:48:47 +00:00
mod projection;
mod quat;
mod vec;