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 ...
5
votes
2answers
1k views
2D colliding n-body simulation (fast Collision Detection for large number of balls)
I want to write a program for simulating a motion of high number (N = 1000 - 10^5 and more) of bodies (circles) on 2D plane. All bodies have equal size and the only force between them is elastic ...
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 ...
4
votes
9answers
4k 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 appreciate any help that ...
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 ...
1
vote
3answers
492 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 (rectangle images) bouncing ...
0
votes
2answers
524 views
Collision Detection Cocos 2D
Im trying to make a game where the ball randomly bounces around the screen and then if it hits the target you win the game. Therefore Im trying to create a collision detection between the ball sprite ...