ncollide3d/query/proximity/
mod.rs
1pub use self::proximity::Proximity;
4pub use self::proximity_ball_ball::proximity_ball_ball;
5pub use self::proximity_composite_shape_shape::{
6 proximity_composite_shape_shape, proximity_shape_composite_shape,
7};
8pub use self::proximity_plane_support_map::{
9 proximity_plane_support_map, proximity_support_map_plane,
10};
11pub use self::proximity_shape_shape::proximity;
12pub use self::proximity_support_map_support_map::proximity_support_map_support_map;
13pub use self::proximity_support_map_support_map::proximity_support_map_support_map_with_params;
14
15mod proximity;
16mod proximity_ball_ball;
17mod proximity_composite_shape_shape;
18mod proximity_plane_support_map;
19mod proximity_shape_shape;
20mod proximity_support_map_support_map;