From 0d2eb5f2e00b3c9b1ae4d323280fd7c405582b2e Mon Sep 17 00:00:00 2001 From: Crozet Sébastien Date: Fri, 18 Dec 2020 15:26:39 +0100 Subject: Remove some commented code. --- src/geometry/mod.rs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/geometry/mod.rs b/src/geometry/mod.rs index 2d0b5d9..4d16929 100644 --- a/src/geometry/mod.rs +++ b/src/geometry/mod.rs @@ -3,7 +3,6 @@ pub use self::broad_phase_multi_sap::BroadPhase; pub use self::collider::{Collider, ColliderBuilder, ColliderShape}; pub use self::collider_set::{ColliderHandle, ColliderSet}; -// pub use self::contact_generator::{ContactDispatcher, DefaultContactDispatcher}; pub use self::contact_pair::{ContactData, ContactManifoldData}; pub use self::contact_pair::{ContactPair, SolverFlags}; pub use self::interaction_graph::{ @@ -84,19 +83,16 @@ pub(crate) use self::broad_phase_multi_sap::{BroadPhasePairEvent, ColliderPair}; pub(crate) use self::collider_set::RemovedCollider; #[cfg(feature = "simd-is-enabled")] pub(crate) use self::contact_pair::WContact; +pub use self::interaction_groups::InteractionGroups; pub(crate) use self::narrow_phase::ContactManifoldIndex; pub(crate) use cdl::partitioning::WQuadtree; -//pub(crate) use self::z_order::z_cmp_floats; -pub use self::interaction_groups::InteractionGroups; pub use cdl::shape::*; mod broad_phase_multi_sap; mod collider; mod collider_set; -// mod contact_generator; mod contact_pair; mod interaction_graph; -mod narrow_phase; -//mod z_order; mod interaction_groups; +mod narrow_phase; mod pair_filter; -- cgit