Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
5answers
671 views

Pool Billiard AI

Im implementing a pool billiard game in Java and it all works fine. It is a multiplayer game, but nevertheless, it should also be possible to play it alone. For this purpose I'm trying to implement a ...
4
votes
1answer
393 views

What physics engine would be good for a Silverlight pool engine?

I have looked into the Farseer engine, but I barely scratched the surface. Would it or another engine be good for a reasonably accurate pool game engine?
1
vote
2answers
46 views

Trying to find a way to “slide” cuestick in Actionscript 3.0 Billiards Game

I am trying to get the cue to stop rotating when it is in the MOUSE_DOWN event, but continue to add the distance of mouseX and mouseY to the distance of the cue from the cueball. In other words, for ...
1
vote
1answer
468 views

How do I make my ActionScript 3 Pool Game more realistic with Box2dFlash?

Here is my pool game engine done in Box2dFlash. I would like to make this simulation more realistic as I received mixed opinion from pool experts. Here is my standard wall setting: var leftWall = ...
1
vote
4answers
473 views

How to pre-calculate the trajectories in a billiard (pool) game?

Most collision detection algorithm in billiard uses a naive approch, where the balls' positions are incremented and then checked for collisions. This method dosen't work well when the speed are really ...
-1
votes
2answers
226 views

Ball to Ball Collision

I read the page Ball to Ball Collision - Detection and Handling and am a bit confused about the code for resolve_collision. I get everything except what is 1.0f + Constants.restitution? What is 1.0f ...