1 2 3 4 5 6 7
//! Collection of shapes usefull as containers, along with the all important `Sphere`. pub use self::sphere::Sphere; pub use self::cuboid::Cuboid; mod sphere; mod cuboid;