diff options
| author | Sébastien Crozet <developer@crozet.re> | 2022-12-18 15:12:19 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-18 15:12:19 +0100 |
| commit | cc0c982a5b74f38695a63278d51fd39bf1693524 (patch) | |
| tree | a557d1aa147e6e567f46a8377512f4258522438b /examples2d/all_examples2.rs | |
| parent | 8fa2a61249a60d6fc6440ef29f66a83f01585e54 (diff) | |
| parent | f71af8a827ab9ffe7038edf56ece0dd2f38a0fd9 (diff) | |
| download | rapier-cc0c982a5b74f38695a63278d51fd39bf1693524.tar.gz rapier-cc0c982a5b74f38695a63278d51fd39bf1693524.tar.bz2 rapier-cc0c982a5b74f38695a63278d51fd39bf1693524.zip | |
Merge pull request #415 from Wolftousen/master
Add Rope Joints
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..6fecc9e 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(); @@ -75,6 +76,7 @@ pub fn main() { ("Polyline", polyline2::init_world), ("Pyramid", pyramid2::init_world), ("Restitution", restitution2::init_world), + ("Rope Joints", rope_joints2::init_world), ("Sensor", sensor2::init_world), ("Trimesh", trimesh2::init_world), ("(Debug) box ball", debug_box_ball2::init_world), |
