2013-10-06 22:54:09 +08:00
|
|
|
//! Mathematical traits.
|
|
|
|
|
|
|
|
pub use self::geometry::{AbsoluteRotate, Cross, CrossMatrix, Dot, FromHomogeneous, Norm, Rotate,
|
|
|
|
Rotation, RotationMatrix, RotationWithTranslation, ToHomogeneous,
|
|
|
|
Transform, Transformation, Translate, Translation, UniformSphereSample};
|
|
|
|
|
2014-01-10 03:48:30 +08:00
|
|
|
pub use self::structure::{RealVec, RealVecExt, Basis, Cast, Col, Dim, Indexable,
|
2013-10-10 04:59:44 +08:00
|
|
|
Iterable, IterableMut, Mat, Row, Vec, VecExt};
|
2013-10-06 22:54:09 +08:00
|
|
|
|
2014-01-10 03:48:30 +08:00
|
|
|
pub use self::operations::{Absolute, ApproxEq, Cov, Inv, LMul, Mean, Outer, RMul, ScalarAdd,
|
|
|
|
ScalarSub, Transpose};
|
2013-10-06 22:54:09 +08:00
|
|
|
|
|
|
|
pub mod geometry;
|
|
|
|
pub mod structure;
|
|
|
|
pub mod operations;
|