Skip to content

Commit 7c87f0e

Browse files
authored
Fix rollers rotating angle In "omni_wheels.wbt" sample world (#6710)
Fix Rollers Rotating Angle
1 parent 1ad0a69 commit 7c87f0e

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

docs/reference/changelog-r2024.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,6 @@ Released on December **th, 2023.
3030
- Fixed error on macos when when putting displays and cameras in separate windows ([#6635](https://github.com/cyberbotics/webots/pull/6635)).
3131
- Fixed crash when `wb_supervisor_field_get_name` was called with NULL ([#6647](https://github.com/cyberbotics/webots/pull/6647)).
3232
- Fixed bug where the wrong y coordinate was used for one corner of the box drawn to represent a box-plane collision ([#6677](https://github.com/cyberbotics/webots/pull/6677)).
33+
- Fixed bug where the rotation axis of the omni wheel rollers were incorrect ([6710](https://github.com/cyberbotics/webots/pull/6710)).
3334
- Fixed a bug where Webots would crash if a geometry was inserted into a `Shape` node used a bounding box ([#6691](https://github.com/cyberbotics/webots/pull/6691)).
3435
- Removed the old `wb_supervisor_field_import_sf_node` and `wb_supervisor_field_import_mf_node` functions from the list of editor autocomplete suggestions ([#6701](https://github.com/cyberbotics/webots/pull/6701)).

projects/samples/howto/omni_wheels/worlds/omni_wheels.wbt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ DEF OMNI_WHEELS Robot {
4343
children [
4444
DEF sr1 HingeJoint {
4545
jointParameters HingeJointParameters {
46+
axis 0 1 0
4647
anchor -0.02 0 0.05
4748
}
4849
endPoint Solid {
@@ -100,6 +101,7 @@ DEF OMNI_WHEELS Robot {
100101
}
101102
DEF sr3 HingeJoint {
102103
jointParameters HingeJointParameters {
104+
axis 0 1 0
103105
anchor -0.02 0 -0.05
104106
}
105107
endPoint Solid {
@@ -306,6 +308,7 @@ DEF OMNI_WHEELS Robot {
306308
children [
307309
DEF sr1 HingeJoint {
308310
jointParameters HingeJointParameters {
311+
axis 0 1 0
309312
anchor -0.02 0 0.05
310313
}
311314
endPoint Solid {
@@ -343,6 +346,7 @@ DEF OMNI_WHEELS Robot {
343346
}
344347
DEF sr3 HingeJoint {
345348
jointParameters HingeJointParameters {
349+
axis 0 1 0
346350
anchor -0.02 0 -0.05
347351
}
348352
endPoint Solid {
@@ -502,6 +506,7 @@ DEF OMNI_WHEELS Robot {
502506
children [
503507
DEF sr1 HingeJoint {
504508
jointParameters HingeJointParameters {
509+
axis 0 1 0
505510
anchor -0.02 0 0.05
506511
}
507512
endPoint Solid {
@@ -539,6 +544,7 @@ DEF OMNI_WHEELS Robot {
539544
}
540545
DEF sr3 HingeJoint {
541546
jointParameters HingeJointParameters {
547+
axis 0 1 0
542548
anchor -0.02 0 -0.05
543549
}
544550
endPoint Solid {

0 commit comments

Comments
 (0)