Skip to content

Commit 600d87b

Browse files
committed
fixed sim parameters
1 parent c366c30 commit 600d87b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lunabotics/lunabot/src/apps/sim.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,8 @@ impl LunasimbotApp {
313313
);
314314
localizer_ref.set_acceleration(acceleration);
315315
}
316-
FromLunasim::Gyroscope { id: _, axis, angle } => {
317-
localizer_ref.set_angular_velocity(axis_angle(axis, angle));
316+
FromLunasim::Gyroscope { id: _, .. } => {
317+
localizer_ref.set_angular_velocity(Vector3::zeros());
318318
}
319319
FromLunasim::DepthMap(depths) => {
320320
if !get_observe_depth() {

robot-layout/sim.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{
66
"name": "depth_camera",
77
"origin": [0.0, 0.573, -0.298],
8-
"euler": [-30.0, 0.0, 0.0]
8+
"euler": [0.0, -30.0, 0.0]
99
}
1010
]
1111
}

0 commit comments

Comments
 (0)