spherical-cow 0.1.3

Spherical Cow: High volume fraction sphere packing in arbitrary geometries
1
2
3
4
5
6
7
//! Collection of shapes usefull as containers, along with the all important `Sphere`.

pub use self::cuboid::Cuboid;
pub use self::sphere::Sphere;

mod cuboid;
mod sphere;