aboutsummaryrefslogtreecommitdiff
path: root/src/geometry/proximity_detector
diff options
context:
space:
mode:
authorCrozet Sébastien <developer@crozet.re>2020-10-06 11:37:48 +0200
committerCrozet Sébastien <developer@crozet.re>2020-10-06 11:37:48 +0200
commit60c4d01e0a756ce0af142ac698fd0adcb8c22042 (patch)
treee1877ae21257aeee88399f62493984458f4391e0 /src/geometry/proximity_detector
parent17c31bcc57ec8d037ba6cc6ab5f7cfb6fa4bb09b (diff)
downloadrapier-60c4d01e0a756ce0af142ac698fd0adcb8c22042.tar.gz
rapier-60c4d01e0a756ce0af142ac698fd0adcb8c22042.tar.bz2
rapier-60c4d01e0a756ce0af142ac698fd0adcb8c22042.zip
Completely remove the WAABBHierarchy structure.
It is now replaced by the WQuadtree.
Diffstat (limited to 'src/geometry/proximity_detector')
-rw-r--r--src/geometry/proximity_detector/trimesh_shape_proximity_detector.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/geometry/proximity_detector/trimesh_shape_proximity_detector.rs b/src/geometry/proximity_detector/trimesh_shape_proximity_detector.rs
index 1fc5e1e..edf3085 100644
--- a/src/geometry/proximity_detector/trimesh_shape_proximity_detector.rs
+++ b/src/geometry/proximity_detector/trimesh_shape_proximity_detector.rs
@@ -1,7 +1,7 @@
use crate::geometry::proximity_detector::{
PrimitiveProximityDetectionContext, ProximityDetectionContext,
};
-use crate::geometry::{Collider, Proximity, Shape, Trimesh, WAABBHierarchyIntersections};
+use crate::geometry::{Collider, Proximity, Shape, Trimesh};
use crate::ncollide::bounding_volume::{BoundingVolume, AABB};
pub struct TrimeshShapeProximityDetectorWorkspace {