Skip to content

Commit

Permalink
[fix] fix typo in robot wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
yzqin authored Jun 20, 2024
1 parent 5424adc commit 538cdd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dex_retargeting/robot_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def get_link_pose(self, link_id: int) -> npt.NDArray:

def get_link_pose_inv(self, link_id: int) -> npt.NDArray:
pose: pin.SE3 = pin.updateFramePlacement(self.model, self.data, link_id)
return pose.inverse().homegeneous
return pose.inverse().homogeneous

def compute_single_link_local_jacobian(self, qpos, link_id: int) -> npt.NDArray:
J = pin.computeFrameJacobian(self.model, self.data, qpos, link_id)
Expand Down

0 comments on commit 538cdd7

Please sign in to comment.