1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! This module contains the most common traits used in `acgmath`. By
//! glob-importing this module, you can avoid the need to import each trait
//! individually, while still being selective about what types you import.

pub use structure::*;

pub use rotation::Rotation;
pub use rotation::Rotation2;
pub use rotation::Rotation3;

pub use transform::Transform;
pub use transform::Transform2;
pub use transform::Transform3;