Answered step by step
Verified Expert Solution
Question
1 Approved Answer
/** This class models a ball that bounces off walls. */ public class Ball { // Instance variables /* Your code goes here */ /**
/**
This class models a ball that bounces off walls.
*/
public class Ball
{
// Instance variables
/* Your code goes here */
/**
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)
{
/* Your code goes here */
}
/**
Moves the ball.
*/
public void move()
{
/* Your code goes here */
}
/**
Turns the ball direction 90 degrees clockwise.
*/
private void turn()
{
/* Your code goes here */
}
/**
Gets the current x-position.
@return the x-position
*/
public int getX()
{
/* Your code goes here */
}
/**
Gets the current y-position.
@return the y-position
*/
public int getY()
{
/* Your code goes here */
}
} *CODES FOR turn(), getX(), and getY() too please
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started