diff options
| author | Wolftousen <eliot.t.eikenberry@perilforge.com> | 2022-11-04 23:47:54 -0400 |
|---|---|---|
| committer | Wolftousen <eliot.t.eikenberry@perilforge.com> | 2022-11-04 23:47:54 -0400 |
| commit | 150b113a1839f31e182428a71b50d96bf78ef0e0 (patch) | |
| tree | 4ce4f87ce672cef9852b5126437e02a8ed8ff13a /examples2d/all_examples2.rs | |
| parent | 506f911fe0b1783cb8fff92bbd9cc05927fa8bc7 (diff) | |
| download | rapier-150b113a1839f31e182428a71b50d96bf78ef0e0.tar.gz rapier-150b113a1839f31e182428a71b50d96bf78ef0e0.tar.bz2 rapier-150b113a1839f31e182428a71b50d96bf78ef0e0.zip | |
Adding a Rope Joint
Diffstat (limited to 'examples2d/all_examples2.rs')
| -rw-r--r-- | examples2d/all_examples2.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples2d/all_examples2.rs b/examples2d/all_examples2.rs index aa3782b..25dc73e 100644 --- a/examples2d/all_examples2.rs +++ b/examples2d/all_examples2.rs @@ -26,6 +26,7 @@ mod pyramid2; mod restitution2; mod sensor2; mod trimesh2; +mod rope_joints2; fn demo_name_from_command_line() -> Option<String> { let mut args = std::env::args(); @@ -69,6 +70,7 @@ pub fn main() { ("Drum", drum2::init_world), ("Heightfield", heightfield2::init_world), ("Joints", joints2::init_world), + ("DistanceJoints", rope_joints2::init_world), ("Locked rotations", locked_rotations2::init_world), ("One-way platforms", one_way_platforms2::init_world), ("Platform", platform2::init_world), |
