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 ...
9
votes
3answers
376 views
Calcuate x/y point that 2 moving balls will collide
Im trying to make what is (essentially) a simple pool game, and would like to be able to predict where a shot will go once it hits another ball.
The first part is, I believe, to calculate if the ...
4
votes
5answers
442 views
Angle that a moving ball will bounce off of an inert ball
Let there be two balls, one of which is moving about in the Cartesian coordinate plane, while the other is stationary and immobile. At some point, the moving ball collides with the inert ball. ...
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
9answers
1k views
Bouncing ball not conforming to Conservation of Energy Rule!
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 (couple of more things to ...
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 ...
2
votes
1answer
419 views
Mass Ball-to-Ball Collision Handling (as in, lots of balls)
Update: Found out that I was using the radius as the diameter, which was why the mtd (mass translation distance) was overcompensating.
Another Update: The reason my balls are overlapping seem to be ...
2
votes
4answers
1k 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 bounces my balls ...
0
votes
1answer
34 views
Using conservation of momentum for ball to ball physics
Is it not a good practice to directly interfere with speed/velocity of an object?
Because I am having problem with my simple ball to ball physics engine.
Should I adopt myself to force based thinking?
...
0
votes
3answers
502 views
Java Bouncing Ball Game - Rolling Problem
I'm writing a bouncing ball game in Java for Android phones. Everything seems to work fine apart from a small problem with collisions and the coefficient of restitution.
When a ball collides with a ...