2017-02-16 05:04:34 +08:00
|
|
|
//! [Reexported at the root of this crate.] Data structures for vector and matrix computations.
|
2017-02-13 01:17:09 +08:00
|
|
|
|
2016-12-05 05:44:42 +08:00
|
|
|
pub mod allocator;
|
2017-08-03 01:37:44 +08:00
|
|
|
mod blas;
|
2018-05-19 23:15:15 +08:00
|
|
|
pub mod constraint;
|
|
|
|
pub mod coordinates;
|
2016-12-05 05:44:42 +08:00
|
|
|
pub mod default_allocator;
|
2018-05-19 23:15:15 +08:00
|
|
|
pub mod dimension;
|
|
|
|
pub mod iter;
|
|
|
|
mod ops;
|
|
|
|
pub mod storage;
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2018-05-19 23:15:15 +08:00
|
|
|
mod alias;
|
|
|
|
mod alias_slice;
|
|
|
|
mod cg;
|
|
|
|
mod componentwise;
|
2016-12-05 05:44:42 +08:00
|
|
|
mod construction;
|
2018-02-02 19:26:04 +08:00
|
|
|
mod construction_slice;
|
2016-12-05 05:44:42 +08:00
|
|
|
mod conversion;
|
2018-05-19 23:15:15 +08:00
|
|
|
mod edition;
|
2018-12-03 04:00:08 +08:00
|
|
|
pub mod indexing;
|
2018-05-19 23:15:15 +08:00
|
|
|
mod matrix;
|
|
|
|
mod matrix_alga;
|
2018-12-06 05:40:03 +08:00
|
|
|
mod array_storage;
|
2018-05-19 23:15:15 +08:00
|
|
|
mod matrix_slice;
|
|
|
|
#[cfg(any(feature = "std", feature = "alloc"))]
|
2018-12-06 05:46:17 +08:00
|
|
|
mod vec_storage;
|
2018-05-19 23:15:15 +08:00
|
|
|
mod properties;
|
|
|
|
mod scalar;
|
2018-10-22 13:00:10 +08:00
|
|
|
mod swizzle;
|
2016-12-05 05:44:42 +08:00
|
|
|
mod unit;
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub mod helper;
|
|
|
|
|
|
|
|
pub use self::matrix::*;
|
2018-05-19 23:15:15 +08:00
|
|
|
pub use self::scalar::*;
|
2016-12-05 05:44:42 +08:00
|
|
|
pub use self::unit::*;
|
|
|
|
|
|
|
|
pub use self::default_allocator::*;
|
2018-05-19 23:15:15 +08:00
|
|
|
pub use self::dimension::*;
|
2016-12-05 05:44:42 +08:00
|
|
|
|
|
|
|
pub use self::alias::*;
|
2018-02-02 19:26:00 +08:00
|
|
|
pub use self::alias_slice::*;
|
2018-12-06 05:40:03 +08:00
|
|
|
pub use self::array_storage::*;
|
2018-05-19 23:15:15 +08:00
|
|
|
pub use self::matrix_slice::*;
|
|
|
|
#[cfg(any(feature = "std", feature = "alloc"))]
|
2018-12-06 05:46:17 +08:00
|
|
|
pub use self::vec_storage::*;
|