Skip to content

Commit

Permalink
Fix Code Style On best-shot (#2183)
Browse files Browse the repository at this point in the history
automated style fixes

Co-authored-by: sid-parikh <[email protected]>
  • Loading branch information
github-actions[bot] and sid-parikh authored Feb 1, 2024
1 parent ca2b214 commit bbc3fd7
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions soccer/src/soccer/planning/planner/line_kick_path_planner.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace planning {
* to kick.
*
* Because of the two-stage system, this planner is *stateful*. It ought
* not to be destructed and re-constructed during a single execution;
* not to be destructed and re-constructed during a single execution;
* the best approach is to call plan() on each tick.
* However, it also shouldn't *completely* break if it is reset.
*
Expand Down Expand Up @@ -60,22 +60,22 @@ class LineKickPathPlanner : public PathPlanner {
bool average_ball_vel_initialized_ = false;

/**
* Returns the trajectory during the initial stage.
* Uses PathTargetPathPlanner to draw a path to the spot to kick from.
* Avoids the ball
*/
* Returns the trajectory during the initial stage.
* Uses PathTargetPathPlanner to draw a path to the spot to kick from.
* Avoids the ball
*/
Trajectory initial(const PlanRequest& plan_request);

/**
* Returns the trajectory during the final stage.
* Uses PathTargetPathPlanner to draw a path directly into the ball.
* Tries to hit the ball with the mouth of the robot.
*/
* Returns the trajectory during the final stage.
* Uses PathTargetPathPlanner to draw a path directly into the ball.
* Tries to hit the ball with the mouth of the robot.
*/
Trajectory final(const PlanRequest& plan_request);

/**
* Decides if the intial approach is complete and updates internal state as necessary.
*/
* Decides if the intial approach is complete and updates internal state as necessary.
*/
void process_state_transition();
};

Expand Down

0 comments on commit bbc3fd7

Please sign in to comment.