2013-10-06 22:54:09 +08:00
|
|
|
//! Data structures and implementations.
|
|
|
|
|
|
|
|
pub use self::dmat::DMat;
|
2014-08-16 18:16:26 +08:00
|
|
|
pub use self::dvec::{DVec, DVec1, DVec2, DVec3, DVec4, DVec5, DVec6};
|
2014-01-21 06:40:32 +08:00
|
|
|
pub use self::vec::{Vec0, Vec1, Vec2, Vec3, Vec4, Vec5, Vec6};
|
2014-10-10 17:23:52 +08:00
|
|
|
pub use self::pnt::{Pnt0, Pnt1, Pnt2, Pnt3, Pnt4, Pnt5, Pnt6};
|
2013-10-09 03:00:45 +08:00
|
|
|
pub use self::mat::{Identity, Mat1, Mat2, Mat3, Mat4, Mat5, Mat6};
|
2013-10-06 22:54:09 +08:00
|
|
|
pub use self::rot::{Rot2, Rot3, Rot4};
|
|
|
|
pub use self::iso::{Iso2, Iso3, Iso4};
|
2014-10-13 02:21:06 +08:00
|
|
|
pub use self::persp::{Persp3, PerspMat3};
|
|
|
|
pub use self::ortho::{Ortho3, OrthoMat3};
|
2014-10-15 03:37:44 +08:00
|
|
|
pub use self::quat::{Quat, UnitQuat};
|
2013-10-06 22:54:09 +08:00
|
|
|
|
2014-01-14 16:40:12 +08:00
|
|
|
mod dmat;
|
2014-08-16 18:16:26 +08:00
|
|
|
mod dvec_macros;
|
2014-01-14 16:40:12 +08:00
|
|
|
mod dvec;
|
2014-05-21 19:08:04 +08:00
|
|
|
mod vec_macros;
|
2014-01-14 16:40:12 +08:00
|
|
|
mod vec;
|
2014-10-10 17:23:52 +08:00
|
|
|
mod pnt_macros;
|
|
|
|
mod pnt;
|
2014-10-15 03:37:44 +08:00
|
|
|
mod quat;
|
2014-05-21 19:08:04 +08:00
|
|
|
mod mat_macros;
|
2014-01-14 16:40:12 +08:00
|
|
|
mod mat;
|
2014-05-21 19:08:04 +08:00
|
|
|
mod rot_macros;
|
2014-01-14 16:40:12 +08:00
|
|
|
mod rot;
|
2014-05-21 19:08:04 +08:00
|
|
|
mod iso_macros;
|
2014-01-14 16:40:12 +08:00
|
|
|
mod iso;
|
2014-10-13 02:21:06 +08:00
|
|
|
mod persp;
|
|
|
|
mod ortho;
|
2013-10-06 22:54:09 +08:00
|
|
|
|
|
|
|
// specialization for some 1d, 2d and 3d operations
|
|
|
|
#[doc(hidden)]
|
|
|
|
mod spec {
|
|
|
|
mod identity;
|
|
|
|
mod mat;
|
|
|
|
mod vec0;
|
|
|
|
mod vec;
|
2013-10-10 04:59:44 +08:00
|
|
|
mod primitives;
|
2013-10-06 22:54:09 +08:00
|
|
|
// mod complex;
|
|
|
|
}
|