diff options
| author | Sébastien Crozet <developer@crozet.re> | 2023-12-10 22:08:07 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-10 22:08:07 +0100 |
| commit | 9ac3503b879f95fcdf5414470ba5aedf195b9a97 (patch) | |
| tree | 5551e86f366f53bfaa24a266f082ff332d74e52b /examples3d/all_examples3.rs | |
| parent | c33b4eeb5c113b8f8509cd866c4ab48e5d6c5eaa (diff) | |
| parent | 2fba50c297987dac6971452d877c1609cee43a98 (diff) | |
| download | rapier-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 '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 e51e185..ad4d226 100644 --- a/examples3d/all_examples3.rs +++ b/examples3d/all_examples3.rs @@ -35,6 +35,7 @@ mod joints3; // mod joints3; mod character_controller3; mod debug_internal_edges3; +mod joint_motor_position3; mod keva3; mod locked_rotations3; mod newton_cradle3; @@ -97,6 +98,7 @@ pub fn main() { ("Domino", domino3::init_world), ("Heightfield", heightfield3::init_world), ("Impulse Joints", joints3::init_world_with_joints), + ("Joint Motor Position", joint_motor_position3::init_world), ("Locked rotations", locked_rotations3::init_world), ("One-way platforms", one_way_platforms3::init_world), ("Platform", platform3::init_world), |
