pub use capsule::{Capsule, CapsuleWide};
pub use chull_adapt::ConvexMesh;
pub use container::{
ComplexShapeId as ConvexHullId, ComplexShapeId as MeshId, ComplexShapeId, ShapeContainer,
};
pub(crate) use convex_hull::BundleIndex;
pub use convex_hull::{
ConvexHull, ConvexHullPointsIter, ConvexHullTriangleIndexIter, ConvexHullTriangleIter,
ConvexHullWide, GENERAL_FACE_VERTICES_RESTRICTIONS,
};
pub use cuboid::{Cuboid, CuboidExt, CuboidWide};
pub use cylinder::{Cylinder, CylinderWide};
pub use infinite_plane::{InfinitePlane, InfinitePlaneWide};
pub use shape::{Shape, ShapeRef};
pub use sphere::{Sphere, SphereWide};
pub use traits::{ComplexShapeTrait, ComputeVolume, ShapePlugin};
pub use triangle::{Triangle, TriangleWide};
mod capsule;
mod container;
mod convex_hull;
mod cuboid;
mod cylinder;
mod infinite_plane;
mod planer_cuboid;
mod shape;
mod sphere;
mod traits;
mod triangle;