//! Geometric shapes that can be placed into the scene.
pub use BVH;
pub use Mesh;
pub use Object;
pub use Sphere;
pub use Triangle;
pub use TriangleMesh;
use crate;
/// A general representation of shapes.
///
/// This allows performing ray intersections against them and accessing their bounding volumes.