Skip to content

Commit ee0fc38

Browse files
committed
remove white spaces
Signed-off-by: Stefano Mutti <mutti.stefano.jp@gmail.com>
1 parent fe5d267 commit ee0fc38

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/systems/mecanum_drive/MecanumDrive.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ void MecanumDrivePrivate::UpdateOdometry(const UpdateInfo &_info,
574574
return;
575575
}
576576

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

579579
// Throttle publishing
580580
auto diff = _info.simTime - this->lastOdomPubTime;

test/integration/mecanum_drive_system.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ class MecanumDriveTest : public InternalFixture<::testing::TestWithParam<int>>
168168
// change. To find the final pose of the model, we have to do the
169169
// following similarity transformation
170170

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

0 commit comments

Comments
 (0)