2016-03-25 04:27:57 +00:00
|
|
|
//! This module contains the most common traits used in `cgmath`. By
|
|
|
|
//! glob-importing this module, you can avoid the need to import each trait
|
|
|
|
//! individually, while still being selective about what types you import.
|
|
|
|
|
2016-04-19 10:51:40 +00:00
|
|
|
pub use structure::*;
|
2016-03-25 04:27:57 +00:00
|
|
|
|
|
|
|
pub use rotation::Rotation;
|
|
|
|
pub use rotation::Rotation2;
|
|
|
|
pub use rotation::Rotation3;
|
|
|
|
|
|
|
|
pub use transform::Transform;
|
|
|
|
pub use transform::Transform2;
|
|
|
|
pub use transform::Transform3;
|