35
votes
8answers
4k views
Ball to Ball Collision - Detection and Handling
With the help of the StackOverflow 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 eve …
4
votes
9answers
893 views
How do I create collision detections for my bouncing balls?
I have coded an animation (in python) for three beach balls to bounce around a screen. I now wish to have them all collide and be able to bounce off each other. I would really appr …
1
vote
2answers
703 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 …
2
votes
9answers
427 views
Bouncing ball not conforming to Conservation of Energy Rule!!!
Hi all,
I am currently busy on writing a small ball physics engine for my programming course in Win32 API and c++. I have finished the GDI backbuffer renderer and the whole GUI (co …
2
votes
6answers
818 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 …
1
vote
2answers
156 views
How do I reverse the direction that my rectangles travel?
I am very new at programming as it was only just introduced into my school as a subject and I need some help. I have been given the task to have an animation of three balls (rectan …
2
votes
4answers
480 views
Using an epsilon value to determine if a ball in a game is not moving?
I have balls bouncing around and each time they collide their speed vector is reduced by the Coefficient of Restitution.
Right now my balls CoR for my balls is .80 . So after many …
