21 Bouncing Ball Example
21 Bouncing Ball Example
/*
* File: BouncingBall.java
* -----------------------
* This program graphically simulates a bouncing ball.
*/
import acm.program.*;
import acm.graphics.*;
/** X Velocity */
private static final double X_VEL = 5;