Question: Intro to JAVA please see below: --------------------------------------------------- CODE: /** This class models a ball that bounces off walls. */ public class Ball { // Instance
Intro to JAVA please see below:
---------------------------------------------------

CODE:
/** This class models a ball that bounces off walls. */ public class Ball { // Instance variables . . .
/** Constructs a ball at (0, 0) traveling northeast. @param rightWall the position of the wall to the right @param topWall the position of the wall at the top */ public Ball(int rightWall, int topWall) { . . . }
/** Moves the ball. */ public void move() { . . . }
/** Turns the ball direction 90 degrees clockwise. */ private void turn() { . . . }
/** Gets the current x-position. @return the x-position */ public int getX() { . . . }
/** Gets the current y-position. @return the y-position */ public int getY() { . . . } }
northeast direction. When the ball bounces on a wall, it turns 90 degrees A ball bounces inside a given rectangle, starting at the rectangle's bottom left corner at (0, 0) and initially moving in the bounces on a corner, its direction reverses. The move method advances its position by one unit in the x-direction (left or right) and one unit in the y-direction (up or down). clockwise. If it northeast direction. When the ball bounces on a wall, it turns 90 degrees A ball bounces inside a given rectangle, starting at the rectangle's bottom left corner at (0, 0) and initially moving in the bounces on a corner, its direction reverses. The move method advances its position by one unit in the x-direction (left or right) and one unit in the y-direction (up or down). clockwise. If it
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
