Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please help me to solve these problems A ball bounces along the x-axis between a wall at 0 and another wall at a given distance.

Please help me to solve these problems

A ball bounces along the x-axis between a wall at 0 and another wall at a given distance. The move method advances its position by one unit. When it reaches either wall, it changes direction.

Ball.java

/** This class models a ball that bounces off walls. */ public class Ball { // Instance variables . . .

/** Constructs a ball at position 0 traveling east. @param rightWall the position of the wall to the right */ public Ball(int rightWall) { . . . }

/** Moves the ball. */ public void move() { . . . }

/** Gets the current position. @return the current position */ public int getPosition() { . . . } }

A ball bounces inside a given rectangle, starting at the rectangles bottom left corner at (0, 0) and initially moving in the northeast direction. When the ball bounces on a wall, it turns 90 degrees clockwise. If it 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).

Ball.java

/** 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() { . . . } }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Advances In Databases And Information Systems 25th European Conference Adbis 2021 Tartu Estonia August 24 26 2021 Proceedings Lncs 12843

Authors: Ladjel Bellatreche ,Marlon Dumas ,Panagiotis Karras ,Raimundas Matulevicius

1st Edition

3030824713, 978-3030824716

More Books

Students also viewed these Databases questions

Question

What is topology? Explain with examples

Answered: 1 week ago

Question

What is linear transformation? Define with example

Answered: 1 week ago

Question

=+2 Is the decision sustainable in the long run?

Answered: 1 week ago

Question

=+1 Is the decision fair to employees?

Answered: 1 week ago