Comparing two different objects in one method
Im new to Java and need help solving this probably simple problem.
I have two classes. One class is called circle which holds the radius and the position of each circle and one class that extends applet which I use array lists to create multiple circle objects. I want to put the collision tester in the circle class but I am stuck on how to implement this. I assume I would call the method like: circle.get(0).collision(circle.get(1)) but how do I access the variables (such as the radius and the positions) of the first circle? What should I set the parameters to be? I know about the "this" reference but I just can't make it work.
Any help would be appreciated!

