2013-05-15 05:08:29 +08:00
|
|
|
#[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;
|
2013-05-15 05:08:29 +08:00
|
|
|
pub use dim2::mat2::Mat2;
|
|
|
|
|
2013-05-17 05:44:05 +08:00
|
|
|
pub use dim1::vec1::Vec1;
|
|
|
|
pub use dim1::mat1::Mat1;
|
|
|
|
|
2013-05-15 08:18:13 +08:00
|
|
|
pub use ndim::nvec::NVec;
|
|
|
|
pub use ndim::nmat::NMat;
|
|
|
|
|
2013-05-17 05:30:39 +08:00
|
|
|
pub use adaptors::rotmat::Rotmat;
|
|
|
|
pub use adaptors::transform::Transform;
|
|
|
|
|
2013-05-15 05:08:29 +08:00
|
|
|
pub use traits::dot::Dot;
|
|
|
|
pub use traits::cross::Cross;
|
|
|
|
pub use traits::dim::Dim;
|
|
|
|
pub use traits::inv::Inv;
|
|
|
|
pub use traits::transpose::Transpose;
|
|
|
|
|
2013-05-17 05:30:39 +08:00
|
|
|
pub use traits::workarounds::rlmul::{RMul, LMul};
|
|
|
|
pub use traits::workarounds::trigonometric::Trigonometric;
|
|
|
|
|
2013-05-15 05:08:29 +08:00
|
|
|
mod dim2
|
|
|
|
{
|
|
|
|
mod vec2;
|
|
|
|
mod mat2;
|
|
|
|
}
|
|
|
|
|
2013-05-17 05:44:05 +08:00
|
|
|
mod dim1
|
|
|
|
{
|
|
|
|
mod vec1;
|
|
|
|
mod mat1;
|
|
|
|
}
|
|
|
|
|
2013-05-15 05:08:29 +08:00
|
|
|
mod dim3
|
|
|
|
{
|
|
|
|
mod vec3;
|
|
|
|
mod mat3;
|
|
|
|
}
|
|
|
|
|
|
|
|
mod ndim
|
|
|
|
{
|
2013-05-15 08:18:13 +08:00
|
|
|
mod nvec;
|
|
|
|
mod nmat;
|
2013-05-15 05:08:29 +08:00
|
|
|
}
|
|
|
|
|
2013-05-17 05:30:39 +08:00
|
|
|
mod adaptors
|
|
|
|
{
|
|
|
|
mod rotmat;
|
|
|
|
mod transform;
|
|
|
|
}
|
|
|
|
|
2013-05-15 05:08:29 +08:00
|
|
|
mod traits
|
|
|
|
{
|
|
|
|
mod dot;
|
|
|
|
mod cross;
|
|
|
|
mod inv;
|
|
|
|
mod transpose;
|
|
|
|
mod dim;
|
|
|
|
|
|
|
|
mod workarounds
|
|
|
|
{
|
2013-05-17 05:30:39 +08:00
|
|
|
mod rlmul;
|
2013-05-15 05:08:29 +08:00
|
|
|
mod trigonometric;
|
|
|
|
}
|
|
|
|
}
|