/**
 @author Frank M. Carrano, Timothy M. Henry
 @version 5.0
*/
public interface ConstantsInterface
{
   public static final double INCHES_PER_CENTIMETER = 0.39370079;
   public static final double FEET_PER_METER = 3.2808399;
   public static final double MILES_PER_KILOMETER = 0.62137119;
} // end ConstantsInterface
