Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame^] | 1 | namespace 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. | ||||
5 | table Position { | ||||
6 | // Wheel angle in radians/second. | ||||
7 | theta_left:double; | ||||
8 | theta_right:double; | ||||
9 | } | ||||
10 | |||||
11 | root_type Position; |