parry3d_f64/query/intersection_test/
mod.rs

1//! Implementation details of the `intersection_test` function.
2
3pub use self::intersection_test::intersection_test;
4pub use self::intersection_test_ball_ball::intersection_test_ball_ball;
5pub use self::intersection_test_ball_point_query::{
6    intersection_test_ball_point_query, intersection_test_point_query_ball,
7};
8#[cfg(feature = "alloc")]
9pub use self::intersection_test_composite_shape_shape::{
10    intersection_test_composite_shape_shape, intersection_test_shape_composite_shape,
11    IntersectionCompositeShapeShapeVisitor,
12};
13pub use self::intersection_test_cuboid_cuboid::intersection_test_cuboid_cuboid;
14pub use self::intersection_test_cuboid_segment::{
15    intersection_test_aabb_segment, intersection_test_cuboid_segment,
16    intersection_test_segment_cuboid,
17};
18pub use self::intersection_test_cuboid_triangle::{
19    intersection_test_aabb_triangle, intersection_test_cuboid_triangle,
20    intersection_test_triangle_cuboid,
21};
22pub use self::intersection_test_halfspace_support_map::{
23    intersection_test_halfspace_support_map, intersection_test_support_map_halfspace,
24};
25pub use self::intersection_test_support_map_support_map::intersection_test_support_map_support_map;
26pub use self::intersection_test_support_map_support_map::intersection_test_support_map_support_map_with_params;
27
28mod intersection_test;
29mod intersection_test_ball_ball;
30mod intersection_test_ball_point_query;
31#[cfg(feature = "alloc")]
32mod intersection_test_composite_shape_shape;
33mod intersection_test_cuboid_cuboid;
34mod intersection_test_cuboid_segment;
35mod intersection_test_cuboid_triangle;
36mod intersection_test_halfspace_support_map;
37mod intersection_test_support_map_support_map;