aboutsummaryrefslogtreecommitdiff
path: root/src/geometry/wquadtree.rs
diff options
context:
space:
mode:
authorCrozet Sébastien <developer@crozet.re>2020-10-06 15:49:22 +0200
committerCrozet Sébastien <developer@crozet.re>2020-10-06 15:49:22 +0200
commite87b73a2a20fee1ed333d564ba46dbf1c3ca75e2 (patch)
treea4031976bb6a9f8cf81880c8ed4e0d1c72e919cb /src/geometry/wquadtree.rs
parentc5a8e03df7b3009b24e7c272fafcc49b4bc4e829 (diff)
downloadrapier-e87b73a2a20fee1ed333d564ba46dbf1c3ca75e2.tar.gz
rapier-e87b73a2a20fee1ed333d564ba46dbf1c3ca75e2.tar.bz2
rapier-e87b73a2a20fee1ed333d564ba46dbf1c3ca75e2.zip
Fix compilation in 2D.
Diffstat (limited to 'src/geometry/wquadtree.rs')
-rw-r--r--src/geometry/wquadtree.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/geometry/wquadtree.rs b/src/geometry/wquadtree.rs
index 233ebd1..fce04eb 100644
--- a/src/geometry/wquadtree.rs
+++ b/src/geometry/wquadtree.rs
@@ -1,6 +1,8 @@
use crate::geometry::{ColliderHandle, ColliderSet, Ray, AABB};
use crate::geometry::{WRay, WAABB};
-use crate::math::{Point, Vector};
+use crate::math::Point;
+#[cfg(feature = "dim3")]
+use crate::math::Vector;
use crate::simd::{SimdFloat, SIMD_WIDTH};
use ncollide::bounding_volume::BoundingVolume;
use simba::simd::{SimdBool, SimdValue};
@@ -252,6 +254,7 @@ impl<T: IndexedData> WQuadtree<T> {
// Find the axis with minimum variance. This is the axis along
// which we are **not** subdividing our set.
+ #[allow(unused_mut)] // Does not need to be mutable in 2D.
let mut subdiv_dims = [0, 1];
#[cfg(feature = "dim3")]
{
@@ -466,6 +469,7 @@ impl<T: IndexedData> WQuadtreeIncrementalBuilder<T> {
// Find the axis with minimum variance. This is the axis along
// which we are **not** subdividing our set.
+ #[allow(unused_mut)] // Does not need to be mutable in 2D.
let mut subdiv_dims = [0, 1];
#[cfg(feature = "dim3")]
{