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-02-18 19:13:40 +08:00
|
|
|
pub use self::structure::{FloatVec, FloatVecExt, Basis, Cast, Col, Dim, Indexable,
|
2014-04-13 16:24:17 +08:00
|
|
|
Iterable, IterableMut, Mat, Row, AnyVec, VecExt};
|
2013-10-06 22:54:09 +08:00
|
|
|
|
2014-02-18 19:13:40 +08:00
|
|
|
pub use self::operations::{Absolute, ApproxEq, Cov, Inv, LMul, Mean, Outer, PartialOrd, RMul,
|
2014-05-10 04:14:37 +08:00
|
|
|
ScalarAdd, ScalarSub, Transpose, ColSlice, RowSlice};
|
2014-04-13 16:24:17 +08:00
|
|
|
pub use self::operations::{PartialOrdering, PartialLess, PartialEqual, PartialGreater, NotComparable};
|
2013-10-06 22:54:09 +08:00
|
|
|
|
|
|
|
pub mod geometry;
|
|
|
|
pub mod structure;
|
|
|
|
pub mod operations;
|