From cc6d1b973002b4d366bc81ec6bf9e8240ad7b404 Mon Sep 17 00:00:00 2001 From: Crozet Sébastien Date: Mon, 14 Dec 2020 15:51:43 +0100 Subject: Outsource the Shape trait, wquadtree, and shape types. --- src/geometry/proximity_detector/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/geometry/proximity_detector/mod.rs') diff --git a/src/geometry/proximity_detector/mod.rs b/src/geometry/proximity_detector/mod.rs index a99372f..fc904da 100644 --- a/src/geometry/proximity_detector/mod.rs +++ b/src/geometry/proximity_detector/mod.rs @@ -15,7 +15,7 @@ pub use self::proximity_detector::{ }; pub use self::proximity_dispatcher::{DefaultProximityDispatcher, ProximityDispatcher}; pub use self::trimesh_shape_proximity_detector::{ - detect_proximity_trimesh_shape, TrimeshShapeProximityDetectorWorkspace, + detect_proximity_trimesh_shape, TriMeshShapeProximityDetectorWorkspace, }; mod ball_ball_proximity_detector; -- cgit From 29717c2887b2db39faf9c25053730b661dc5da2b Mon Sep 17 00:00:00 2001 From: Crozet Sébastien Date: Thu, 17 Dec 2020 13:23:00 +0100 Subject: Externalize the proximity code (renamed intersection). --- src/geometry/proximity_detector/mod.rs | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 src/geometry/proximity_detector/mod.rs (limited to 'src/geometry/proximity_detector/mod.rs') diff --git a/src/geometry/proximity_detector/mod.rs b/src/geometry/proximity_detector/mod.rs deleted file mode 100644 index fc904da..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; -- cgit