diff options
| author | Sébastien Crozet <developer@crozet.re> | 2022-01-16 16:40:59 +0100 |
|---|---|---|
| committer | Sébastien Crozet <developer@crozet.re> | 2022-01-16 16:52:40 +0100 |
| commit | 0703e5527fd95d86bb6621e61dbcb1a6e7f9329a (patch) | |
| tree | 806e7d950015875ebfcca5520784aea6e7c5ae10 /src_testbed/lib.rs | |
| parent | 4454a845e98b990abf3929ca46b59d0fca5a18ec (diff) | |
| download | rapier-0703e5527fd95d86bb6621e61dbcb1a6e7f9329a.tar.gz rapier-0703e5527fd95d86bb6621e61dbcb1a6e7f9329a.tar.bz2 rapier-0703e5527fd95d86bb6621e61dbcb1a6e7f9329a.zip | |
Fix some solver issues
- Fix the wrong codepath taken by the solver for contacts involving a collider without parent.
- Properly adress the non-linear treatment of the friction direction
- Simplify the sleeping strategy
- Add an impulse resolution multiplier
Diffstat (limited to 'src_testbed/lib.rs')
| -rw-r--r-- | src_testbed/lib.rs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src_testbed/lib.rs b/src_testbed/lib.rs index b9a8822..bbf2d2f 100644 --- a/src_testbed/lib.rs +++ b/src_testbed/lib.rs @@ -1,12 +1,4 @@ extern crate nalgebra as na; -#[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; #[macro_use] extern crate bitflags; |
