diff options
| author | Sébastien Crozet <developer@crozet.re> | 2021-01-29 14:42:32 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-29 14:42:32 +0100 |
| commit | 7ca46f38cde6cf8bf8bf41ea6067ae5bc938205c (patch) | |
| tree | 3781b9d7c92a6a8111573ba4cae1c5d41435950e /src_testbed/lib.rs | |
| parent | e6fc8f67faf3e37afe38d683cbd930d457f289be (diff) | |
| parent | 825f33efaec4ce6a8903751e836a0ea9c466ff92 (diff) | |
| download | rapier-7ca46f38cde6cf8bf8bf41ea6067ae5bc938205c.tar.gz rapier-7ca46f38cde6cf8bf8bf41ea6067ae5bc938205c.tar.bz2 rapier-7ca46f38cde6cf8bf8bf41ea6067ae5bc938205c.zip | |
Merge pull request #79 from dimforge/split_geom
Move most of the geometric code to another crate.
Diffstat (limited to 'src_testbed/lib.rs')
| -rw-r--r-- | src_testbed/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src_testbed/lib.rs b/src_testbed/lib.rs index 5358e7c..af9d633 100644 --- a/src_testbed/lib.rs +++ b/src_testbed/lib.rs @@ -10,6 +10,10 @@ 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")] +extern crate parry3d as parry; +#[cfg(feature = "dim2")] extern crate rapier2d as rapier; #[cfg(feature = "dim3")] extern crate rapier3d as rapier; |
