Skip to content

Commit 5b8b2db

Browse files
committed
fix: rotation3d typo isaac-sim#110
1 parent aeed298 commit 5b8b2db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

isaacgymenvs/tasks/amp/poselib/poselib/core/rotation3d.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ def rot_matrix_from_quaternion(q):
416416

417417
R0 = torch.stack([R00, R01, R02], dim=-1)
418418
R1 = torch.stack([R10, R11, R12], dim=-1)
419-
R2 = torch.stack([R10, R21, R22], dim=-1)
419+
R2 = torch.stack([R20, R21, R22], dim=-1)
420420

421421
R = torch.stack([R0, R1, R2], dim=-2)
422422

0 commit comments

Comments
 (0)