aboutsummaryrefslogtreecommitdiff
path: root/examples2d/all_examples2.rs
diff options
context:
space:
mode:
authorSébastien Crozet <developer@crozet.re>2023-12-10 22:08:07 +0100
committerGitHub <noreply@github.com>2023-12-10 22:08:07 +0100
commit9ac3503b879f95fcdf5414470ba5aedf195b9a97 (patch)
tree5551e86f366f53bfaa24a266f082ff332d74e52b /examples2d/all_examples2.rs
parentc33b4eeb5c113b8f8509cd866c4ab48e5d6c5eaa (diff)
parent2fba50c297987dac6971452d877c1609cee43a98 (diff)
downloadrapier-9ac3503b879f95fcdf5414470ba5aedf195b9a97.tar.gz
rapier-9ac3503b879f95fcdf5414470ba5aedf195b9a97.tar.bz2
rapier-9ac3503b879f95fcdf5414470ba5aedf195b9a97.zip
Merge pull request #422 from pellico/Fix_Revolute-joint-motor-target-position-is-broken-at-and-beyond-90-degree-angles
Fix #378 Added one example join_motor_position
Diffstat (limited to 'examples2d/all_examples2.rs')
-rw-r--r--examples2d/all_examples2.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples2d/all_examples2.rs b/examples2d/all_examples2.rs
index d102b46..032e4d6 100644
--- a/examples2d/all_examples2.rs
+++ b/examples2d/all_examples2.rs
@@ -17,6 +17,7 @@ mod damping2;
mod debug_box_ball2;
mod drum2;
mod heightfield2;
+mod joint_motor_position2;
mod joints2;
mod locked_rotations2;
mod one_way_platforms2;
@@ -79,6 +80,7 @@ pub fn main() {
("Rope Joints", rope_joints2::init_world),
("Sensor", sensor2::init_world),
("Trimesh", trimesh2::init_world),
+ ("Joint motor position", joint_motor_position2::init_world),
("(Debug) box ball", debug_box_ball2::init_world),
];