1
2
3
4
5
6
7
//! Geometric shapes that can be placed into the scene.

pub use shape::Shape;
pub use sphere::Sphere;

mod shape;
mod sphere;