diff options
| author | Sébastien Crozet <developer@crozet.re> | 2023-03-26 15:04:07 +0200 |
|---|---|---|
| committer | Sébastien Crozet <developer@crozet.re> | 2023-03-26 15:04:07 +0200 |
| commit | 8bd289bc73175be477b182ca4d92cb0944fbfe17 (patch) | |
| tree | 89093e785ce1063e8389d1863699376148b3485b /examples3d | |
| parent | 285fe89dd5562c27db0ab5a2e913fd102e9dcee8 (diff) | |
| download | rapier-8bd289bc73175be477b182ca4d92cb0944fbfe17.tar.gz rapier-8bd289bc73175be477b182ca4d92cb0944fbfe17.tar.bz2 rapier-8bd289bc73175be477b182ca4d92cb0944fbfe17.zip | |
Move the side_friction_stiffness init to the WheelTuning
Diffstat (limited to 'examples3d')
| -rw-r--r-- | examples3d/vehicle_controller3.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples3d/vehicle_controller3.rs b/examples3d/vehicle_controller3.rs index fec675a..1228c82 100644 --- a/examples3d/vehicle_controller3.rs +++ b/examples3d/vehicle_controller3.rs @@ -44,7 +44,7 @@ pub fn init_world(testbed: &mut Testbed) { ]; for pos in wheel_positions { - vehicle.add_wheel(pos, -Vector::y(), Vector::z(), hh, hh / 4.0, 1.0, &tuning); + vehicle.add_wheel(pos, -Vector::y(), Vector::z(), hh, hh / 4.0, &tuning); } /* |
