box3d_rust/hull/mod.rs
1//! Convex hull construction and query module.
2//!
3//! Port of `box3d-cpp-reference/src/hull.c`: quickhull construction, box hulls,
4//! validate, identity, plus mass/AABB/overlap/cast query APIs. The verstable hull
5//! map is deferred.
6
7mod box_hull;
8mod builder_init;
9mod builder_ops;
10mod builder_pool;
11mod create;
12mod database;
13mod identity;
14mod queries;
15mod types;
16mod validate;
17
18pub use box_hull::*;
19pub use create::*;
20pub use database::*;
21pub use identity::*;
22pub use queries::*;
23pub use types::{convert_bytes_to_hull, *};
24pub use validate::*;