Skip to content

Commit

Permalink
Fix a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Amronos committed Feb 16, 2025
1 parent fb3a77f commit c487fa8
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,19 +56,19 @@ class Odometry
// Current pose:
double x_; // [m]
double y_; // [m]
double heading_; // [rad]
double heading_; // [rads]

// Current velocity:
double linear_x_vel_; // [m/s]
double linear_y_vel_; // [m/s]
double angular_vel_; // [rad/s]
double angular_vel_; // [rads/s]

// Robot kinematic parameters:
double robot_radius_; // [m]
double wheel_radius_; // [m]
double wheel_offset_; // [rad]
double wheel_offset_; // [rads]

// Previous wheel positions/states [m]:
// Previous wheel positions/states [rads]:
std::vector<double> wheels_old_pos_;
};

Expand Down

0 comments on commit c487fa8

Please sign in to comment.