1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! Implementation details of the `contact` and `contacts` functions.

pub use self::contact::Contact;
pub use self::contact_ball_ball::contact_ball_ball;
pub use self::contact_ball_convex_polyhedron::{
    contact_ball_convex_polyhedron, contact_convex_polyhedron_ball,
};
pub use self::contact_composite_shape_shape::{
    contact_composite_shape_shape, contact_shape_composite_shape,
};
pub use self::contact_halfspace_support_map::{
    contact_halfspace_support_map, contact_support_map_halfspace,
};
pub use self::contact_shape_shape::contact;
pub use self::contact_support_map_support_map::contact_support_map_support_map;
pub use self::contact_support_map_support_map::contact_support_map_support_map_with_params;

mod contact;
mod contact_ball_ball;
mod contact_ball_convex_polyhedron;
mod contact_composite_shape_shape;
mod contact_halfspace_support_map;
mod contact_shape_shape;
mod contact_support_map_support_map;