//! Implementation details of the `contact` and `contacts` functions. pub use self::contact::Contact; pub use self::ball_against_ball::ball_against_ball; pub use self::support_map_against_support_map::support_map_against_support_map; pub use self::support_map_against_support_map::support_map_against_support_map_with_params; pub use self::plane_against_support_map::{plane_against_support_map, support_map_against_plane}; pub use self::any_against_any::any_against_any as contact_internal; pub use self::composite_shape_against_any::{composite_shape_against_any, any_against_composite_shape}; // pub use self::generate_contact_manifold::generate_contact_manifold; mod contact; mod ball_against_ball; mod support_map_against_support_map; mod plane_against_support_map; mod any_against_any; mod composite_shape_against_any; // mod generate_contact_manifold;