2013-10-06 22:54:09 +08:00
|
|
|
//! Mathematical traits.
|
|
|
|
|
2014-10-26 23:30:09 +08:00
|
|
|
pub use traits::geometry::{AbsoluteRotate, Cross, CrossMatrix, Dot, FromHomogeneous, Norm, Orig,
|
|
|
|
Rotate, Rotation, RotationMatrix, RotationWithTranslation, ToHomogeneous,
|
|
|
|
Transform, Transformation, Translate, Translation, UniformSphereSample};
|
2013-10-06 22:54:09 +08:00
|
|
|
|
2014-10-26 23:30:09 +08:00
|
|
|
pub use traits::structure::{FloatVec, FloatPnt, Basis, Cast, Col, Dim, Indexable, Iterable,
|
|
|
|
IterableMut, Mat, SquareMat, Row, NumVec, NumPnt, PntAsVec, VecAsPnt,
|
|
|
|
ColSlice, RowSlice, Diag, Eye, Shape};
|
2013-10-06 22:54:09 +08:00
|
|
|
|
2014-10-26 23:30:09 +08:00
|
|
|
pub use traits::operations::{Absolute, ApproxEq, Axpy, Cov, Det, Inv, LMul, Mean, Outer, POrd,
|
2014-10-27 00:24:33 +08:00
|
|
|
RMul, ScalarAdd, ScalarSub, ScalarMul, ScalarDiv, Transpose, EigenQR};
|
2014-10-26 23:30:09 +08:00
|
|
|
pub use traits::operations::{POrdering, PartialLess, PartialEqual, PartialGreater, NotComparable};
|
2013-10-06 22:54:09 +08:00
|
|
|
|
|
|
|
pub mod geometry;
|
|
|
|
pub mod structure;
|
|
|
|
pub mod operations;
|