parry3d_f64/partitioning/mod.rs
1//! Spatial partitioning tools.
2
3#[cfg(feature = "alloc")]
4pub use self::bvh::{Bvh, BvhBuildStrategy, BvhLeafCost, BvhNode, BvhWorkspace, TraversalAction};
5
6#[cfg(feature = "alloc")]
7mod bvh;