Skip to content
Advertisement

Reverse the motion if its crosses the borders of the frame

I am working on program that should make rectangle moves from top to bottom and then left to right once the rectangle crosses the borders of the frame it should reverse its motion from right to left and bottom to top. I managed to do the first part with a simple if statement but I didn’t know how to reverse it.

JavaScript

Advertisement

Answer

So, you basic problem can be described as a basic “collision detection” problem.

The basic concept is, if one of the box’s edges exceeds the viewable area, you want to reverse the delta, for example…

JavaScript

Now, you also need to check for left/top edge as well (ie < 0), but the basic idea is the same.

Swing is also not thread safe and is single threaded. This means that you should not be making changes to the UI, or any state the UI relies on, from outside the context of the event dispatching thread AND you should not be performing any long running/blocking operations from within the context of the event dispatching thread.

See Concurrency in Swing for more details and How to Use Swing Timers for a possible/common solution

For example…

JavaScript
Advertisement