parry3d_f64/query/visitors/mod.rs
1//! Visitors for performing geometric queries exploiting spatial partitioning data structures.
2
3pub use self::aabb_sets_interferences_collector::AabbSetsInterferencesCollector;
4pub use self::bounding_volume_intersections_simultaneous_visitor::BoundingVolumeIntersectionsSimultaneousVisitor;
5pub use self::bounding_volume_intersections_visitor::BoundingVolumeIntersectionsVisitor;
6pub use self::composite_closest_point_visitor::CompositeClosestPointVisitor;
7pub use self::composite_point_containment_test::CompositePointContainmentTest;
8pub use self::point_intersections_visitor::PointIntersectionsVisitor;
9pub use self::ray_intersections_visitor::RayIntersectionsVisitor;
10
11mod aabb_sets_interferences_collector;
12mod bounding_volume_intersections_simultaneous_visitor;
13mod bounding_volume_intersections_visitor;
14mod composite_closest_point_visitor;
15mod composite_point_containment_test;
16mod point_intersections_visitor;
17mod ray_intersections_visitor;