The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
1answer
46 views

Getter and Setter in C# [closed]

May I know how am I able to allow the ball to move freely by using a getter and setter in class named Ball.cs and implement it in StartGame.cs? The timer in StartGame.cs is to make the balls to move ...
1
vote
2answers
71 views

Why the ball did not bounce off on the edge of the right [closed]

The ball bounced off halfway on the right. However, I wanted it to bounce off the edge on the right. May I know how do I do it right? The codes that I have are as below. public partial class ...
0
votes
1answer
36 views

Vector Equation Implementation

after some time searching, I have revised my question. I have found numerous examples of ball to ball collisions, but the only ones that seem to work use Vector2d or Vector2D. This is a problem, ...
0
votes
1answer
17 views

Difficulty with movement in game close to Pong (pygame)

Note: I am really new in programming. At first, I am just going to post the code I have written: import pygame import random pygame.init() screen = pygame.display.set_mode([640, 480]) paddle = ...
0
votes
2answers
60 views

How to implement an object in a JFrame and make it bounce of the walls [duplicate]

I have just started learning java, and don't know much about GUI Components except for JFrame and JLayout. How do I implement an object (ball) in a JFrame, and make it bounce of the walls infinite ...
0
votes
0answers
28 views

How to design frames for throwing a ball in the cricket pitch in Action Script 3

Hello guys i am working on designing a side view of cricket pitch in action script 3. I have designed a rectangle for side view of pitch. now i want to throw the ball from one side of stumps to ...
-2
votes
1answer
212 views

Drawing 2 Balls to move in different direction on Java but one disappeared

I'm trying to create a program that would have 2 balls drawn, with one at the North center and the other at the south center. I am required to move the balls in different directions with the first ...
0
votes
0answers
92 views

how would i add gravity to a ball that bounces?

I would like the ball in the code below to bounce according to gravity. at the moment, it bounces around a frame of the walls. I am making a version of angry birds, so gravity is key. I have some idea ...
1
vote
2answers
180 views

Bouncing ball falling down a curve

Does this make sense? Balls bouncing of Frictionless surface under the effect of gravity. http://www.4shared.com/photo/JMBbTBLj/bounceball.html p.s. Motion starts from right to left
7
votes
1answer
142 views

Body not rotating to face downward with gravity

I have a rectangle body that is being fired from a canon at a 45degree Angle. The body is also rotated up at a 45 degree angle and I have set the mass to be at the front of the body. The body goes ...
2
votes
1answer
443 views

Draw multiple moving graphics

I've already made this program able to draw an instance of a small ball bouncing around a screen using these two classes import java.awt.Graphics; import java.awt.Graphics2D; import ...
1
vote
1answer
272 views

Moving box2d body ball

How can I move body ball in box2d like a volleyball without accelerating or dumping (with a constant speed) Do I need a special formula for this?
0
votes
0answers
132 views

ball bounce and collision

I'm trying to make the ball bounce , but something wrong with angles, and it doesn't work correctly. I have many tries, here one of them I.update = function() { WALLS.forEach(function(wall) { ...
1
vote
0answers
46 views

How to make a set number of balls bounce

I need to change the "bounce" method in the BallDemo class to allow a user to choose how many bouncing balls there are through a parameter. I need to use a collection to store the balls, and the balls ...
0
votes
0answers
69 views

How would I use an accelerometer in my Xcode apps?

I am making a simple bouncy ball application, and I wanted to incorporate an accelerometer into the app so the ball falls as if with gravity, is there a way to simply make x, y, and z values for the ...
0
votes
1answer
225 views

Ball collision, Android

I am trying to make two balls collide and I already read a lot of physical stuff and discussions that dealed with this topic. I already wrote some code based on the stuff I read but there seems to be ...
0
votes
2answers
645 views

Move a ball with accelerometer android

Hi i have write this code to move a simple ball with an ImageView and accelerometer but don't work. i have used ball.scrollTo(xa, ya) but this code doesn't work with a variable catching accelerometer ...
0
votes
1answer
686 views

AS3: How can I add gravity/friction to my ball object so it doesn't get stuck in no-man's-land?

I've recently had a breakthrough on the coding for my skee-ball style game. I was having serious issues with collision detection, which the boffins of stackoverflow have helped me solve. I was ...
1
vote
2answers
833 views

andengine throw a ball with a force and at a particular angle

In AndEngine game, I want to throw a ball physics body. The user sets its angle and force and throws it. Its scenario is same as we can see in Angry Birds. I have calculated both the force and angle ...
0
votes
1answer
303 views

AS3: How can I get rid of non-null hitTestObject error with already instantiated objects?

I am a beginner/intermediate AS3 "programmer" trying to complete a skeeball-like flash-based game for a university assessment, and I'm doing myself serious mental damage trying to get even basic ...
1
vote
0answers
89 views

AccelerometerPlayActivity source transform

Plz Answer to me. I'd like to transform this activity. Que 1. one Ball Image -> variety of Ball Image Que 2. Rect Collision -> Round Collision public void resolveCollisionWithBounds() { ...
7
votes
3answers
321 views

2d balls not colliding properly

I*m just trying to code a nice looking physics game... so my current problem is: The ball collision looks nice but if the balls are colliding too slow, they "stick" in each other o.O I have no clue ...
1
vote
1answer
134 views

javascript change speed of a ball in a canvas

I have a ball bouncing in a canvas and I'm trying to change the speed the ball travels at and I'm not getting it to work. I'm trying to implement the speed just as I am doing the ball color and ball ...
0
votes
1answer
221 views

C++ SDL Collision based on Angles

Im in the process of creating a Pong clone using c++ and SDL. im trying to make the collision and bounce of the ball based on angles. i have successfully created such method but it fails at angles ...
0
votes
1answer
481 views

moving a ball with help of accelerometer in android

i had written a code to move a ball with the help of accelerometer in android such that if it touches any of 4 edges it reappears on opposide edge my problems are 1.ball is not reappearing on ...
0
votes
2answers
629 views

2D Ball Collision and resolution

I'm very new to c# and was trying to make a game thats like haxball (www.haxball.com) I have created a simple method that detects collision between the two balls by calculating the distance. I was ...
0
votes
1answer
408 views

Creating Platforms in HTML5 Canvas, Moving Ball

I'm new to canvas and have an elementary knowledge of Javascript. I'm developing a (seemingly) simple game in which a ball rolls from the top left of the screen along a platform. So the ball needs ...
0
votes
2answers
259 views

Drawing Ball Flight using XNA

I am currently making a golf ball game using C# and XNA. So far I have been able to make the ball fly, bounce, and roll, while displaying the position and velocity. Now I want to be able to see the ...
1
vote
1answer
229 views

C++ Ball Bouncing in the rhombus

I made a simple ball bouncing program with VC++. the goal of this program is that ball must bounce in the rhombus. it cannot go out of rhombus. It seems that it runs successfully, but in the left and ...
1
vote
1answer
1k views

Bouncing Ball With Gravity In Java [duplicate]

Possible Duplicate: How do I apply gravity to my bouncing ball application? I have a ball class that bounces off the ground. Here is a portion of my code: public void update(){ yPos += ...
0
votes
0answers
331 views

Xcode collision detection

I have two custom classes, ball and paddle, and am drawing the two classes in a draw view class, however i can not use the CGRectIntersectsRect method due to the objects not being an image. Any help ...
0
votes
1answer
128 views

This circle only draws once in android. Does anyone know what?

Why does this code only draw a circle once? I cannot for the life of me figure it out. Do I need to do some kind of refresh or something? I am able to get a red dot, to draw once, but any click after ...
0
votes
1answer
67 views

Count the azimuth after ball bounce

I have a ball. I know its azimuth and speed. I want to count the azimuth after a bounce (wall probably). Lets call the azimuth alpha. Image: I know the alpha. I know the wall azimuth. I need "?". ...
0
votes
1answer
274 views

Ball collision problems

So I have a system with colliding balls that generally works, except for when they collide with similar directions, less than 90 degrees apart. This is because the ball above tries to collide ...
0
votes
2answers
844 views

Android: A simple cyrcle moving with accelerometer

I've re-edited the whole topic again, based on what i have so far, since i had so many views on the previous topic and no replys. In the meanwhile i kinda figured out how accelerometer works. Now I ...
0
votes
2answers
2k views

How To Paint Multiple Objects Of Same Class Onto One JPanel

I'm a university student and I'm having trouble with my assignment. Normally, I would just go to the lab time and ask the TA, but he's been sick all week so we haven't had any lab time and this ...
0
votes
0answers
553 views

Android touch move ball with acceleration

I am developing a basketball game. I want to use the touch event to throw the ball. I like when the player touches the ball strong to the screen will go fast, whereas if the user touches the ball will ...
0
votes
3answers
309 views

Creating 2D billiard game with realistic movement

I'm new to XNA and in game programming. I'm creating 2D billiard game and I want to add balls with realistic movement (like 3D). Is it possible, to achieve this, without using 3D models (I want to ...
0
votes
0answers
299 views

ball reflection

I'm trying to create a pong game with c++ but I have problem with reflecting ball. I have fallowing variables: speed angle(angle of the velocity vector) now, I get my x component of velocity with ...
0
votes
1answer
193 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
180 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 ...
2
votes
1answer
152 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 ...
1
vote
0answers
95 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 ...
6
votes
4answers
2k 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 ...
8
votes
2answers
349 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 ...
0
votes
0answers
104 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
133 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
713 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
703 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
282 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() # ...

1 2