nalgebra/src/nalgebra.rc

63 lines
925 B
Plaintext
Raw Normal View History

#[link(name = "nalgebra"
, vers = "0.0"
, author = "Sébastien Crozet"
, uuid = "1E96070F-4778-4EC1-B080-BF69F7048216")];
#[crate_type = "lib"];
#[warn(non_camel_case_types)]
extern mod std;
pub use dim3::vec3::Vec3;
2013-05-15 08:18:13 +08:00
pub use dim3::mat3::Mat3;
pub use dim2::vec2::Vec2;
pub use dim2::mat2::Mat2;
pub use dim2::rotmat2::Rotmat2;
2013-05-15 08:18:13 +08:00
pub use ndim::nvec::NVec;
pub use ndim::nmat::NMat;
pub use traits::dot::Dot;
pub use traits::cross::Cross;
pub use traits::dim::Dim;
pub use traits::workarounds::sqrt::Sqrt;
pub use traits::workarounds::trigonometric::Trigonometric;
pub use traits::inv::Inv;
pub use traits::transpose::Transpose;
mod dim2
{
mod vec2;
mod mat2;
mod rotmat2;
}
mod dim3
{
mod vec3;
mod mat3;
}
mod ndim
{
2013-05-15 08:18:13 +08:00
mod nvec;
mod nmat;
}
mod traits
{
mod dot;
mod cross;
mod inv;
mod transpose;
mod dim;
mod workarounds
{
mod sqrt;
mod trigonometric;
}
}