/** Global constants * @author: Phil Gage */ class Constants { /** Small value for ray tests */ public static final double EPSILON = 0.001; /** Large value for ray tests */ public static final double INFINITY = 1.0e38; /** Degrees to radians */ public static final double DTOR = Math.PI / 180.0; }