parry2d 0.26.0

2 dimensional collision detection library in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub use bvh_traverse::{BvhLeafCost, TraversalAction};
pub use bvh_tree::{Bvh, BvhBuildStrategy, BvhNode, BvhNodeIndex, BvhNodeWide, BvhWorkspace};

use bvh_optimize::BvhOptimizationHeapEntry;

mod bvh_binned_build;
mod bvh_insert;
mod bvh_optimize;
mod bvh_ploc_build;
mod bvh_queries;
mod bvh_refit;
mod bvh_traverse;
mod bvh_traverse_bvtt;
mod bvh_tree;
mod bvh_validation;

#[cfg(test)]
mod bvh_tests;