/*
 * Created on Feb 8, 2005
 *
 */

/**
 * @author knorton
 */
public class Constants {
	// CoR from Garwin's Model
	static float		Ex			= 0.6f;
	static float		Ey			= 0.6f;
	
	// From Garwin's Model
	static float		GARWIN_ALPHA	= 2f/5f;
	 	
	static float		Mball		= 5f;	// kg
    static float		G 			= 9.8f; 	// m/sec^2
    static float		DELTA_T		= 0.2f; 	// second
    static float		DAMPENING	= 0.8f; 	// ratio (this goes away)

    static String	STATIC_IMAGE 	= "images/lotto-hi.png";
    static String	DYNAMIC_IMAGE	= "images/lotto-lo.png";
}
