Austin Schuh | 6bcc230 | 2019-03-23 22:28:06 -0700 | [diff] [blame] | 1 | #ifndef Y2019_ACTORS_AUTO_SPLINES_H_ |
| 2 | #define Y2019_ACTORS_AUTO_SPLINES_H_ |
| 3 | |
| 4 | #include "frc971/control_loops/control_loops.q.h" |
| 5 | /* |
| 6 | |
| 7 | The cooridinate system for the autonomous splines is the same as the spline |
| 8 | python generator and drivetrain spline systems. |
| 9 | |
| 10 | */ |
| 11 | |
| 12 | namespace y2019 { |
| 13 | namespace actors { |
| 14 | |
| 15 | class AutonomousSplines { |
| 16 | public: |
| 17 | // A spline that does an 's' cause that's what he wanted. |
| 18 | static ::frc971::MultiSpline BasicSSpline(); |
| 19 | |
| 20 | // Straight |
| 21 | static ::frc971::MultiSpline StraightLine(); |
| 22 | |
| 23 | // HP to near side rocket |
| 24 | static ::frc971::MultiSpline HPToNearRocket(); |
James Kuszmaul | bc83787 | 2019-04-07 12:01:47 -0700 | [diff] [blame] | 25 | |
| 26 | static ::frc971::MultiSpline HabToFarRocket(); |
| 27 | static ::frc971::MultiSpline FarRockettoHP(); |
Austin Schuh | 6bcc230 | 2019-03-23 22:28:06 -0700 | [diff] [blame] | 28 | }; |
| 29 | |
| 30 | } // namespace actors |
| 31 | } // namespace y2019 |
| 32 | |
| 33 | #endif // Y2019_ACTORS_AUTO_SPLINES_H_ |