Skip to content

Commit 41f192c

Browse files
committed
Fix SpatialForce rmul
1 parent fb68765 commit 41f192c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spatialmath/spatialvector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ def __rmul__(
487487
right, left
488488
): # lgtm[py/not-named-self] pylint: disable=no-self-argument
489489
# Twist * SpatialForce -> SpatialForce
490-
return SpatialForce(left.Ad.T @ right.A)
490+
return SpatialForce(left.Ad().T @ right.A)
491491

492492

493493
# ------------------------------------------------------------------------- #

0 commit comments

Comments
 (0)