Skip to content

Commit

Permalink
fix mistake in quat util
Browse files Browse the repository at this point in the history
  • Loading branch information
henrygerardmoore committed Oct 2, 2024
1 parent 85d4cfa commit a98ef09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuse_core/include/fuse_core/util.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -317,9 +317,9 @@ static inline void quaternionToAngleAxis(const double* q, double* angle_axis, do
else
{
jacobian_map.setZero();
jacobian_map(0, 0) = 2.0;
jacobian_map(1, 1) = 2.0;
jacobian_map(2, 2) = 2.0;
jacobian_map(3, 3) = 2.0;
}
}
}
Expand Down

0 comments on commit a98ef09

Please sign in to comment.