Skip to content

Commit

Permalink
Format the CODE
Browse files Browse the repository at this point in the history
  • Loading branch information
Rocky14683 committed Nov 25, 2023
1 parent b982d01 commit 65892ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lemlib/chassis/chassis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ void Chassis::setPose(Pose pose, bool radians) {
* This function is a wrapper for the Odometry::getPose() function
* but it also transforms the pose to the format needed by the user
*/
Pose Chassis::getPose(bool radians) const{
Pose Chassis::getPose(bool radians) const {
Pose pose = odom->getPose();
pose.theta = M_PI_2 - pose.theta;
if (!radians) pose.theta = radToDeg(pose.theta);
Expand Down

0 comments on commit 65892ff

Please sign in to comment.