aboutsummaryrefslogtreecommitdiff
path: root/src_testbed/lib.rs
diff options
context:
space:
mode:
authorSébastien Crozet <developer@crozet.re>2022-01-02 14:47:40 +0100
committerSébastien Crozet <developer@crozet.re>2022-01-02 16:58:36 +0100
commitf74b8401ad9ef50b8cdbf1f43a2b21f6c42b0ebc (patch)
tree53ac492fea5942a7d466f58a0095f39505674ea4 /src_testbed/lib.rs
parentb45d4b5ac2b31856c15e802b31e288a58940cbf2 (diff)
downloadrapier-f74b8401ad9ef50b8cdbf1f43a2b21f6c42b0ebc.tar.gz
rapier-f74b8401ad9ef50b8cdbf1f43a2b21f6c42b0ebc.tar.bz2
rapier-f74b8401ad9ef50b8cdbf1f43a2b21f6c42b0ebc.zip
Implement multibody joints and the new solver
Diffstat (limited to 'src_testbed/lib.rs')
-rw-r--r--src_testbed/lib.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src_testbed/lib.rs b/src_testbed/lib.rs
index a3e3a00..b9a8822 100644
--- a/src_testbed/lib.rs
+++ b/src_testbed/lib.rs
@@ -1,12 +1,4 @@
extern crate nalgebra as na;
-#[cfg(all(feature = "dim2", feature = "other-backends"))]
-extern crate ncollide2d as ncollide;
-#[cfg(all(feature = "dim3", feature = "other-backends"))]
-extern crate ncollide3d as ncollide;
-#[cfg(all(feature = "dim2", feature = "other-backends"))]
-extern crate nphysics2d as nphysics;
-#[cfg(all(feature = "dim3", feature = "other-backends"))]
-extern crate nphysics3d as nphysics;
#[cfg(feature = "dim2")]
extern crate parry2d as parry;
#[cfg(feature = "dim3")]
@@ -37,8 +29,6 @@ mod camera2d;
mod camera3d;
mod graphics;
pub mod harness;
-#[cfg(feature = "other-backends")]
-mod nphysics_backend;
pub mod objects;
pub mod physics;
#[cfg(all(feature = "dim3", feature = "other-backends"))]