Tagged Questions
The ball tag has no wiki summary.
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 ...
8
votes
2answers
209 views
How can I simulate repulsion between multiple point charges (ball bearings) in Mathematica?
I'm trying to write a program in Mathematica that will simulate the way charged ball bearings spread out when they are charged with like charges (they repel each other). My program so far keeps the ...
5
votes
4answers
120 views
Bouncing Ball logics
I've got a ball which bounces of walls. This bounce is simple, i just do this, ( code snippet )
if ( x - moveSpeed < 0 ) // Ball hit left wall
xVel *= -1;
However i also got a rectangle ...
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
5answers
441 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 ...
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 ...
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
56 views
color ball collision
for (int i = 0; i < circles->total; i++)
{
// round the floats to an int
float* p = (float*)cvGetSeqElem(circles, i);
cv::Point center(cvRound(p[0]), cvRound(p[1]));
int ...
2
votes
1answer
416 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
1answer
567 views
Ball rolling sound effect
I am working on a Labyrinth style app for iPhone using Chipmunk and openAL. I got everything working except the ball rolling sound. What I have tried is playing a small sound for each update in the ...
2
votes
3answers
690 views
2D Gaming - How to reflect a ball off the bat?
Hi there
I am pretty new to XNA & game dev and am stuck at ball reflection. My ball is reflecting once it hits the bat, but only in one angle, no matter which angle the bat is at.
Here's the ...
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 ...
1
vote
0answers
23 views
Request for approach recommendation for an object identification
Equipment
Windows 7, OpenCV 2.3.1, Visual Studio C++ 2010 Express, and, eventually, any digital video cameras needed, lenses (?)
Project
I want to build a machine to identify characteristics of the ...
1
vote
1answer
138 views
Remove spinning ball when hidden application start
I have created a program in c++ that doesn't have any GUI. When this program stars windows shown a spinning ball for about 5 seconds. Is there any way to remove this?
//Thanks in advance!
1
vote
2answers
903 views
Simple iPhone accelerometer ball-maze game
I want to make a simple 2D game where the user has to navigate a ball through a maze (using the accelerometer of course). I used a simple view to make use of the accelerometer and move a ball on the ...
1
vote
2answers
1k views
2D Ball Collisions with Corners
I'm trying to write a 2D simulation of a ball that bounces off of fixed vertical and horizontal walls. Simulating collisions with the faces of the walls was pretty simple--just negate the X-velocity ...
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
1answer
30 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
1answer
22 views
Drawing a bitmap (ball) onto a polygon with the edges around the ball transparent, on Android using OpenGL
The game I am writing has two layers. The first is the background layer, which I draw by texturing a background image onto a polygon. The second level has a small polygon (representing a ball) that ...
0
votes
0answers
38 views
2d collision not working
I am currently working on a bouncing ball simulator.
I am setting up an algorithm that will return the colliding ball's x and y speeds in the form of an array.
I have monkeyed around with the code ...
0
votes
0answers
63 views
How to achieve this on iphone--3d ellipsoid opengles [closed]
a 3d ellipsoid,on this ball have some pictures and can Response user thouch event
0
votes
0answers
303 views
how to create an throwing ball game in as3 [closed]
i have this AS code which i TRIED to change from http://circlecube.com/2007/03/gravity/
package {
import flash.display.*;
import flash.events.*;
import flash.ui.Mouse;
import flash.events.*;
public ...
0
votes
1answer
266 views
html5 spinning ball
Looking to see an HTML5 example of a ball spinning outward in a circular motion; an example would be like a roulette ball which starts in the middle of a circle, slowly spinning around till it stops ...
0
votes
1answer
102 views
root.after causes Tkinter application to stop working
def colision(self):
if self.coords(self.bola)[1]<50:
self.boladir=1
if self.coords(self.bola)[1]>870:
self.jugando=0
self.pierde()
# ...
0
votes
1answer
277 views
JNI function gives an error “terminated by signal (2)”
I have a native library which is invoked by the JNI function called from UI. It runs just for a one time, it execute one command and in second run it just exits. I get the following print.
...
0
votes
1answer
42 views
deflect the ball in same incoming direction
ballVelocity.y = -ballVelocity.y
this above statement makes the ball deflect ,similar to pong game but ..
i am stuck in making the ball deflect the same direction as the incoming direction ..
pls ...
0
votes
1answer
159 views
Simple ball paddle collision problem !
there is a ball UIImage and Paddle UIImage...
the collision is working fine when the ball hits the top and bottom sides...but
if it hits the small sides of the paddle ..the ball passes through it ...
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 ...
0
votes
3answers
499 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 ...
0
votes
1answer
287 views
How to make a ball move along the edge of a rotating rectangle in xcode?
I wish to make a lever and rotate the lever using accelerometer. I have this problem trying to place the ball on top of the lever and slide the ball along the lever according to the rotation. Would ...
0
votes
1answer
137 views
Are there any ball tracking algorithms/patterns around in game programming
I am a newbie to game programming,I would need the suggestions and help of the wonderful people around here.
I have set of players, and a ball, the players can kick the ball around the ground (not ...
0
votes
1answer
118 views
mouse indicator speed
I opened up a ball mouse and saw the slotted disks which turn past the light collectors. Where can I find code to capture, or see in a Windows program the speed that these slots are being detected as ...
-1
votes
0answers
26 views
Basic ball to ball collision/ handling gravitational force / unstable ball movement caused by gravitational force
I am having no problem with colliding ball now but it seems the gravity is the problem now.
Because my ball acts on the force, it accelerates if a force is acting upon it.
So it accelerates toward the ...