Difference between revisions of "A Ball In A Box"
| Line 19: | Line 19: | ||
var dx=3; //dx is difference between the current x position and the next x position | var dx=3; //dx is difference between the current x position and the next x position | ||
| − | var dy=-3; //dy is difference between the current | + | var dy=-3; //dy is difference between the current y position and the next y position |
var boxTop=130; //the top left corner of the box is 130,120 | var boxTop=130; //the top left corner of the box is 130,120 | ||
Latest revision as of 09:29, 3 February 2012
This program shows a ball bouncing within the confines of a rectangle.
The ball position is stored in the variables cx and cy. The motion of the ball is stored in the dx and dy. dx represents the horizontal speed of the ball and dy represents the vertical speed.
dx gets added to cx each move cycle moving it sideways and dy gets added to cy to move up or down.
The move cycle also has to make sure the ball does not leave the rectangle. because the rectangle has four sides, it must do four checks looking at each side in turn.
cy is checked to see if it is higher than the top or lower than the bottom. cx is compared with the left and right edges of the rectangle.
Try adding the line
dy+=0.1;
Think about what might happen when you run it, then run the program to see if you guessed right.