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

pub use self::contact::{Contact, ContactId, ContactPrediction, TrackedContact};
pub use self::contact_kinematic::{
    ContactKinematic, LocalShapeApproximation, NeighborhoodGeometry,
};
pub use self::contact_manifold::{ContactManifold, ContactTrackingMode};
pub use self::contact_preprocessor::ContactPreprocessor;

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_plane_support_map::{contact_plane_support_map, contact_support_map_plane};
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_kinematic;
mod contact_manifold;
mod contact_plane_support_map;
mod contact_preprocessor;
mod contact_shape_shape;
mod contact_support_map_support_map;