¡@

Home 

java Programming Glossary: vy

Java Bouncing Ball

http://stackoverflow.com/questions/13022754/java-bouncing-ball

private int x private int y private int vx private int vy public Ball String ballcolor int xvelocity int yvelocity if.. Color.white diameter 30 delay 40 x 1 y 1 vx xvelocity vy yvelocity protected void paintComponent Graphics g super.paintComponent.. void move if x vx 0 x diameter vx getWidth vx 1 if y vy 0 y diameter vy getHeight vy 1 x vx y vy private void start..