Skip to content

Commit

Permalink
fix bug in jacobian calculation of fuse_core::quaternionToAngleAxis
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianhirmann committed Oct 3, 2024
1 parent 8545097 commit 1be10fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fuse_core/include/fuse_core/util.h
Original file line number Diff line number Diff line change
Expand Up @@ -388,9 +388,9 @@ static inline void quaternionToAngleAxis(const double * q, double * angle_axis,
else
{
jacobian_map.setZero();
jacobian_map(1, 1) = 2.0;
jacobian_map(2, 2) = 2.0;
jacobian_map(3, 3) = 2.0;
jacobian_map(0, 1) = 2.0;
jacobian_map(1, 2) = 2.0;
jacobian_map(2, 3) = 2.0;
}
}
}
Expand Down

0 comments on commit 1be10fe

Please sign in to comment.