/** | |
* | |
*/ | |
package org.spartanrobotics; | |
import edu.wpi.first.wpijavacv.WPIImage; | |
/** | |
* @author daniel | |
* | |
*/ | |
/** Helper class to store information about targets. */ | |
public class Target { | |
public double azimuth; | |
public double elevation; | |
public double range; | |
WPIImage editedPicture; | |
} |