Tagged Questions
95
votes
10answers
26k views
Ball to Ball Collision - Detection and Handling
With the help of the Stack Overflow community I've written a pretty basic-but fun physics simulator.
You click and drag the mouse to launch a ball. It will bounce around and eventually stop on the ...
4
votes
3answers
1k views
How to handle ball to ball collision with trigonometry instead of vectors?
I am making a simplified version of the ball physics app found at this SO question. I gained a lot from reading through the code and links provided at that question, but in my program I do not use ...
3
votes
2answers
2k views
Ball to Ball Collision - Gains significant velocity upon collision
I implemented the code from the question "Ball to Ball Collision - Detection and Handling" in Objective-C. However, whenever the balls collide at an angle their velocity increases dramatically. All of ...
3
votes
5answers
3k views
Bouncing Ball in Java
This is probably a really basic problem but I can't seem to find any other articles on it.
Anyway, I have written a small bouncing ball program in Java to try and expand my basic skills. The program ...