ncollide3d/query/closest_points/
mod.rs

1//! Implementation details of the `closest_points` function.
2
3pub use self::closest_points::ClosestPoints;
4pub use self::closest_points_ball_ball::closest_points_ball_ball;
5pub use self::closest_points_composite_shape_shape::{
6    closest_points_composite_shape_shape, closest_points_shape_composite_shape,
7};
8pub use self::closest_points_line_line::{
9    closest_points_line_line, closest_points_line_line_parameters,
10    closest_points_line_line_parameters_eps,
11};
12pub use self::closest_points_plane_support_map::{
13    closest_points_plane_support_map, closest_points_support_map_plane,
14};
15pub use self::closest_points_segment_segment::{
16    closest_points_segment_segment, closest_points_segment_segment_with_locations,
17    closest_points_segment_segment_with_locations_nD,
18    closest_points_segment_segment_with_locations_nD_eps,
19};
20pub use self::closest_points_shape_shape::closest_points;
21pub use self::closest_points_support_map_support_map::closest_points_support_map_support_map;
22pub use self::closest_points_support_map_support_map::closest_points_support_map_support_map_with_params;
23
24mod closest_points;
25mod closest_points_ball_ball;
26mod closest_points_composite_shape_shape;
27mod closest_points_line_line;
28mod closest_points_plane_support_map;
29mod closest_points_segment_segment;
30mod closest_points_shape_shape;
31mod closest_points_support_map_support_map;