We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e711bf0 commit 309b731Copy full SHA for 309b731
src/ros_filter.cpp
@@ -2585,9 +2585,10 @@ bool RosFilter<T>::prepareAcceleration(
2585
// from filter state to transform and remove acceleration
2586
const Eigen::VectorXd & state = filter_.getState();
2587
tf2::Matrix3x3 stateTmp;
2588
- stateTmp.setRPY(state(StateMemberRoll),
2589
- state(StateMemberPitch),
2590
- state(StateMemberYaw));
+ stateTmp.setRPY(
+ state(StateMemberRoll),
+ state(StateMemberPitch),
2591
+ state(StateMemberYaw));
2592
2593
// transform state orientation to IMU frame
2594
tf2::Transform imuFrameTrans;
0 commit comments