Skip to content

Commit

Permalink
Quick fix in indices on OSC controller orientation limits (ARISE-Init…
Browse files Browse the repository at this point in the history
  • Loading branch information
roberto-martinmartin authored and rojas70 committed Jul 27, 2021
1 parent 644f71d commit 2d64b02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion robosuite/utils/control_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,5 +243,5 @@ def set_goal_orientation(delta,
else:
euler[idx] = orientation_limit[1][idx]
if limited:
goal_orientation = trans.euler2mat(np.array([euler[1], euler[0], euler[2]]))
goal_orientation = trans.euler2mat(np.array([euler[0], euler[1], euler[2]]))
return goal_orientation

0 comments on commit 2d64b02

Please sign in to comment.