diff options
| author | Sébastien Crozet <developer@crozet.re> | 2021-01-29 14:42:32 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-29 14:42:32 +0100 |
| commit | 7ca46f38cde6cf8bf8bf41ea6067ae5bc938205c (patch) | |
| tree | 3781b9d7c92a6a8111573ba4cae1c5d41435950e /src/geometry/proximity_detector/mod.rs | |
| parent | e6fc8f67faf3e37afe38d683cbd930d457f289be (diff) | |
| parent | 825f33efaec4ce6a8903751e836a0ea9c466ff92 (diff) | |
| download | rapier-7ca46f38cde6cf8bf8bf41ea6067ae5bc938205c.tar.gz rapier-7ca46f38cde6cf8bf8bf41ea6067ae5bc938205c.tar.bz2 rapier-7ca46f38cde6cf8bf8bf41ea6067ae5bc938205c.zip | |
Merge pull request #79 from dimforge/split_geom
Move most of the geometric code to another crate.
Diffstat (limited to 'src/geometry/proximity_detector/mod.rs')
| -rw-r--r-- | src/geometry/proximity_detector/mod.rs | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/geometry/proximity_detector/mod.rs b/src/geometry/proximity_detector/mod.rs deleted file mode 100644 index a99372f..0000000 --- a/src/geometry/proximity_detector/mod.rs +++ /dev/null @@ -1,30 +0,0 @@ -pub use self::ball_ball_proximity_detector::detect_proximity_ball_ball; -#[cfg(feature = "simd-is-enabled")] -pub use self::ball_ball_proximity_detector::detect_proximity_ball_ball_simd; -pub use self::ball_convex_proximity_detector::detect_proximity_ball_convex; -pub use self::cuboid_cuboid_proximity_detector::detect_proximity_cuboid_cuboid; -pub use self::cuboid_triangle_proximity_detector::detect_proximity_cuboid_triangle; -pub use self::polygon_polygon_proximity_detector::detect_proximity_polygon_polygon; -pub use self::proximity_detector::{ - PrimitiveProximityDetectionContext, PrimitiveProximityDetector, ProximityDetectionContext, - ProximityDetector, ProximityPhase, -}; -#[cfg(feature = "simd-is-enabled")] -pub use self::proximity_detector::{ - PrimitiveProximityDetectionContextSimd, ProximityDetectionContextSimd, -}; -pub use self::proximity_dispatcher::{DefaultProximityDispatcher, ProximityDispatcher}; -pub use self::trimesh_shape_proximity_detector::{ - detect_proximity_trimesh_shape, TrimeshShapeProximityDetectorWorkspace, -}; - -mod ball_ball_proximity_detector; -mod ball_convex_proximity_detector; -mod ball_polygon_proximity_detector; -mod cuboid_cuboid_proximity_detector; -mod cuboid_polygon_proximity_detector; -mod cuboid_triangle_proximity_detector; -mod polygon_polygon_proximity_detector; -mod proximity_detector; -mod proximity_dispatcher; -mod trimesh_shape_proximity_detector; |
