We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 652642f commit 5e0f624Copy full SHA for 5e0f624
src/pytorch_kinematics/transforms/transform3d.py
@@ -406,7 +406,7 @@ def transform_normals(self, normals):
406
msg = "Expected normals to have dim = 2 or dim = 3: got shape %r"
407
raise ValueError(msg % (normals.shape,))
408
mat = self._get_matrix_inverse()[:, :3, :3]
409
- normals_out = _broadcast_bmm(normals, mat.inverse())
+ normals_out = _broadcast_bmm(normals, mat)
410
411
# This doesn't pass unit tests. TODO investigate further
412
# if self._lu is None:
0 commit comments