blob: d97268c8308facaedd8990f37804db7d1db60c32 [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace y2016.control_loops.shooter;
2
3// All angles are in radians, and angular velocities are in radians/second.
4// For all angular velocities, positive is shooting the ball out of the robot.
5table Position {
6 // Wheel angle in radians/second.
7 theta_left:double;
8 theta_right:double;
9}
10
11root_type Position;