Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Commit

Permalink
Fix #include sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
calcmogul committed Jul 2, 2024
1 parent 7b9e6e9 commit 6a4130a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
1 change: 1 addition & 0 deletions include/.styleguide
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ modifiableFileExclude {

includeOtherLibs {
^Eigen/
^frc/
^sleipnir/
}
3 changes: 2 additions & 1 deletion include/trajopt/path/SwervePathBuilder.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@

#pragma once

#include <frc/trajectory/Trajectory.h>
#include <stdint.h>

#include <cassert>
#include <cstddef>
#include <functional>
#include <vector>

#include <frc/trajectory/Trajectory.h>

#include "trajopt/constraint/Constraint.hpp"
#include "trajopt/drivetrain/SwerveDrivetrain.hpp"
#include "trajopt/geometry/Pose2.hpp"
Expand Down
13 changes: 7 additions & 6 deletions include/trajopt/util/GenerateSplineInitialGuess.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@

#include <vector>

#include "frc/MathUtil.h"
#include "frc/geometry/Pose2d.h"
#include "frc/geometry/Translation2d.h"
#include "frc/trajectory/Trajectory.h"
#include "frc/trajectory/TrajectoryGenerator.h"
#include "frc/trajectory/TrajectoryParameterizer.h"
#include <frc/MathUtil.h>
#include <frc/geometry/Pose2d.h>
#include <frc/geometry/Translation2d.h>
#include <frc/trajectory/Trajectory.h>
#include <frc/trajectory/TrajectoryGenerator.h>
#include <frc/trajectory/TrajectoryParameterizer.h>

#include "spline/CubicHermitePoseSplineHolonomic.hpp"
#include "spline/SplineParameterizer.hpp"
#include "spline/SplineUtil.hpp"
Expand Down

0 comments on commit 6a4130a

Please sign in to comment.