Skip to content

Commit

Permalink
remove white spaces
Browse files Browse the repository at this point in the history
Signed-off-by: Stefano Mutti <[email protected]>
  • Loading branch information
muttistefano committed Mar 5, 2024
1 parent fe5d267 commit ee0fc38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/systems/mecanum_drive/MecanumDrive.cc
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ void MecanumDrivePrivate::UpdateOdometry(const UpdateInfo &_info,
return;
}

this->odom.Update(frontLeftPos->Data()[0], frontRightPos->Data()[0], backLeftPos->Data()[0], backRightPos->Data()[0],std::chrono::steady_clock::time_point(_info.simTime));
this->odom.Update(frontLeftPos->Data()[0],frontRightPos->Data()[0],backLeftPos->Data()[0],backRightPos->Data()[0],std::chrono::steady_clock::time_point(_info.simTime));

// Throttle publishing
auto diff = _info.simTime - this->lastOdomPubTime;
Expand Down
2 changes: 1 addition & 1 deletion test/integration/mecanum_drive_system.cc
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ class MecanumDriveTest : public InternalFixture<::testing::TestWithParam<int>>
// change. To find the final pose of the model, we have to do the
// following similarity transformation

math::Pose3d tOdomModel(0.554283, 0, -0.325, 0, 0, 0);
math::Pose3d tOdomModel(0.554283,0,-0.325,0,0,0);
auto finalModelFramePose =
tOdomModel * odomPoses.back() * tOdomModel.Inverse();

Expand Down

0 comments on commit ee0fc38

Please sign in to comment.