danielp | b913fa7 | 2013-03-03 06:23:20 +0000 | [diff] [blame^] | 1 | /** |
2 | * | ||||
3 | */ | ||||
4 | package org.spartanrobotics; | ||||
5 | |||||
6 | import edu.wpi.first.wpijavacv.WPIImage; | ||||
7 | |||||
8 | /** | ||||
9 | * @author daniel | ||||
10 | * | ||||
11 | */ | ||||
12 | |||||
13 | /** Helper class to store information about targets. */ | ||||
14 | public class Target { | ||||
15 | public double azimuth; | ||||
16 | public double elevation; | ||||
17 | public double range; | ||||
18 | |||||
19 | WPIImage editedPicture; | ||||
20 | } |