aboutsummaryrefslogtreecommitdiff
path: root/src/pipeline/physics_pipeline.rs
diff options
context:
space:
mode:
authorCrozet Sébastien <developer@crozet.re>2020-10-06 15:23:48 +0200
committerCrozet Sébastien <developer@crozet.re>2020-10-06 15:23:48 +0200
commit682ff61f94931ef205a9f81e7d00417ac88537c1 (patch)
tree405e0f7df3858de7387467f963088fce3244ba32 /src/pipeline/physics_pipeline.rs
parent7c92848383b9f76bde010f00683a44453b2b456a (diff)
downloadrapier-682ff61f94931ef205a9f81e7d00417ac88537c1.tar.gz
rapier-682ff61f94931ef205a9f81e7d00417ac88537c1.tar.bz2
rapier-682ff61f94931ef205a9f81e7d00417ac88537c1.zip
Don't let the PubSub internal offsets overflow + fix some warnings.
Diffstat (limited to 'src/pipeline/physics_pipeline.rs')
-rw-r--r--src/pipeline/physics_pipeline.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/pipeline/physics_pipeline.rs b/src/pipeline/physics_pipeline.rs
index f00fa8d..4a39f79 100644
--- a/src/pipeline/physics_pipeline.rs
+++ b/src/pipeline/physics_pipeline.rs
@@ -1,15 +1,13 @@
//! Physics pipeline structures.
use crate::counters::Counters;
-use crate::data::pubsub::PubSubCursor;
#[cfg(not(feature = "parallel"))]
use crate::dynamics::IslandSolver;
-use crate::dynamics::{IntegrationParameters, JointSet, RigidBody, RigidBodyHandle, RigidBodySet};
+use crate::dynamics::{IntegrationParameters, JointSet, RigidBodySet};
#[cfg(feature = "parallel")]
use crate::dynamics::{JointGraphEdge, ParallelIslandSolver as IslandSolver};
use crate::geometry::{
- BroadPhase, BroadPhasePairEvent, Collider, ColliderHandle, ColliderPair, ColliderSet,
- ContactManifoldIndex, NarrowPhase, RemovedCollider,
+ BroadPhase, BroadPhasePairEvent, ColliderPair, ColliderSet, ContactManifoldIndex, NarrowPhase,
};
use crate::math::Vector;
use crate::pipeline::EventHandler;