So we are to code a Biljard game i java, which is the main goal of the project. However, the project is divided in to three steps. Firstly we were given a "shell" for the table, and two balls. When you simulated the shall it draws a table without "holes" and the balls does not collide with each others nor does they collide with the walls. The first exercise was to make them collide.
However now we are to continue the build to a "disease game" where friction of the table is zero and are specific number of balls are simulated as healthy or contaminated. To make keep this text short the main problem is to "remove" the balls that have died. So when u run the project 30 balls in random positions and velocities appears. Given some probability some balls are contaminated and will contaminate other balls during a collision at a given probability. Then a timer starts and they can either die or recover. However when they die, the balls should disappear. And i can not make that happen. Now i've made them change color to black.
How do I stop the paint component for a ball that is "killed"? I want them to simply disappear from the table...
Have you tried to set the ball to null?
Assuming that you have a class Ball which is instantiated like
then you draw the ball b in the paint method.
If you then at some point set
the garbage collector should delete your object and take it out of the memory, and the paint method should stop drawing it.
Cheers,
Lucky