Skip to content

Commit

Permalink
fix the mounting direction of dex hand for panda robot
Browse files Browse the repository at this point in the history
  • Loading branch information
xieleo5 committed Jan 22, 2025
1 parent dd895e4 commit d323b91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions robosuite/models/robots/compositional.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def gripper_mount_pos_offset(self):

@property
def gripper_mount_quat_offset(self):
return {"right": [0.5, -0.5, 0.5, 0.5]}
return {"right": [-0.5, 0.5, 0.5, -0.5]}


class PandaDexLH(Panda):
Expand All @@ -101,4 +101,4 @@ def gripper_mount_pos_offset(self):

@property
def gripper_mount_quat_offset(self):
return {"right": [0.5, -0.5, 0.5, 0.5]}
return {"right": [0.5, -0.5, 0.5, -0.5]}

0 comments on commit d323b91

Please sign in to comment.