Skip to content

Commit

Permalink
Merge pull request #57 from xEnVrE/fix/ftSet_nwc_ros2_zcoord
Browse files Browse the repository at this point in the history
Fix assignment of z coordinate within frameTransformSet_nwc_ros2::yarpTransformToROS2Transform()
  • Loading branch information
randaz81 authored Aug 7, 2023
2 parents 4a71c7f + d3bcdaf commit ecc88be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ void FrameTransformSet_nwc_ros2::yarpTransformToROS2Transform(const yarp::math::

tempTransl.x = input.translation.tX;
tempTransl.y = input.translation.tY;
tempTransl.z = input.translation.tY;
tempTransl.z = input.translation.tZ;

tempRotation.w = input.rotation.w();
tempRotation.x = input.rotation.x();
Expand Down

0 comments on commit ecc88be

Please sign in to comment.