diff options
| author | Sébastien Crozet <developer@crozet.re> | 2020-11-03 15:46:16 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-03 15:46:16 +0100 |
| commit | a66f1175788c2626f0fbb510bbf1986cfd283b72 (patch) | |
| tree | 60b0e03ee6345dcb4a4114ccb344486078116f84 /examples3d/all_examples3.rs | |
| parent | f70a840f79943aa6da49db2590e13dcd3f3a89ed (diff) | |
| parent | db337c5df6de124e0fdff7eaa7aeebc28bfb27e6 (diff) | |
| download | rapier-a66f1175788c2626f0fbb510bbf1986cfd283b72.tar.gz rapier-a66f1175788c2626f0fbb510bbf1986cfd283b72.tar.bz2 rapier-a66f1175788c2626f0fbb510bbf1986cfd283b72.zip | |
Merge pull request #55 from dimforge/damping
Add damping support + demos.
Diffstat (limited to 'examples3d/all_examples3.rs')
| -rw-r--r-- | examples3d/all_examples3.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples3d/all_examples3.rs b/examples3d/all_examples3.rs index 2196605..9c1dffc 100644 --- a/examples3d/all_examples3.rs +++ b/examples3d/all_examples3.rs @@ -13,6 +13,7 @@ use std::cmp::Ordering; mod add_remove3; mod collision_groups3; mod compound3; +mod damping3; mod debug_boxes3; mod debug_cylinder3; mod debug_triangle3; @@ -69,6 +70,7 @@ pub fn main() { ("Primitives", primitives3::init_world), ("Collision groups", collision_groups3::init_world), ("Compound", compound3::init_world), + ("Damping", damping3::init_world), ("Domino", domino3::init_world), ("Heightfield", heightfield3::init_world), ("Joints", joints3::init_world), |
