Skip to content

Commit 7d928b5

Browse files
Fixed RobotPose.changeEndEffectorFrame
1 parent 771c11e commit 7d928b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/franky/robot_pose.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class RobotPose {
3939
}
4040

4141
[[nodiscard]] inline RobotPose changeEndEffectorFrame(const Affine &transform) const {
42-
return {end_effector_pose_ * transform.inverse(), elbow_position_};
42+
return {end_effector_pose_ * transform, elbow_position_};
4343
}
4444

4545
[[nodiscard]] inline RobotPose with_elbow_position(const std::optional<double> elbow_position) const {

0 commit comments

Comments
 (0)