1 2 3 4 5 6 7 8 9
//! Module containing objects for geometric vectors and transforms. mod transform3h; mod utils3h; mod vec3h; pub use transform3h::Transform3h; pub use utils3h::Vec3hUtilities; pub use vec3h::Vec3h;