collider_mesh/lib.rs
1//! # **`collider-mesh`**: mesh handling for collision detection
2//!
3//! `collider-mesh` is a sub-crate of the `collider` library, providing
4//! functionality for handling mesh data used in collision detection.
5
6pub use mesh::*;
7
8pub mod mesh;
9
10#[cfg(feature = "python")]
11pub mod py_mesh;