Skip to content

Commit

Permalink
Added comment test
Browse files Browse the repository at this point in the history
  • Loading branch information
VincidaB committed Jan 29, 2024
1 parent f0b4543 commit e1076dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/homemade_controller/src/forward_kinematics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ForwardKinematics::~ForwardKinematics(){
std::vector<double> ForwardKinematics::getWheelsAngularVelocities(double vx, double vy, double omega){

double wl = omega * wheel_base_;

// this needs verification
angular_vel_vec_[0] = (wl + vy) / wheel_radius_;
angular_vel_vec_[1] = (wl - vx) / wheel_radius_;
angular_vel_vec_[2] = (wl - vy) / wheel_radius_;
Expand Down

0 comments on commit e1076dd

Please sign in to comment.