Tagged Questions
Collision detection is the problem of determining if geometric objects intersect. It is an important topic in computer graphics, in CAD/CAM, in dynamical simulation, and in computer games.
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 ...
70
votes
10answers
22k views
Point in Polygon aka hit test
What's your best, most elegant 2D "point inside polygon" or Polygon.contains(p:Point) algorithm?
Edit: There may be different answers for floats vs integers.
Primary goal is speed.
36
votes
10answers
18k views
Circle line collision detection
I have a line from A to B and a circle positioned at C with the radius R. This is in two dimensions.
Which is a good algorithm to use to check whether the line intersects the circle? And at what ...
31
votes
8answers
1k views
Collision detection of huge number of circles
What is the best way to check collision of huge number of circles?
It's very easy to detect collision between two circles, but if we check every combination then it is O(n2) which definitely not an ...
28
votes
13answers
1k views
How can I optimize my basic physics simulator?
I've written a simple physics modeler that allows me to bounce balls around the screen. You can click and drag to launch a ball, or you can generate balls hundreds at a time and watch them interact ...
27
votes
4answers
574 views
Algorithm to find solution to puzzle
I am trying to make a game where a player have to find his way from Start to End on the Game Board.
![Game board][1]
As you see this Game Board contains a bunch of red circular obstacles. To win the ...
24
votes
8answers
27k views
Circle-Rectangle collision detection (intersection)
How can I tell whether a circle and a rectangle intersect in 2D Euclidean space? (i.e. classic 2D geometry)
19
votes
6answers
1k views
How does 3D collision / object detection work?
I'v always wondered this. In a game like GTA where there are 10s of thousands of objects, how does the game know as soon as you're on a health pack?
There can't possibly be an event listener for each ...
16
votes
2answers
911 views
Open source, pure Java physics / dynamics library
I'm looking for a lightweight, pure Java physics engine to do some simulations for robotic motion control.
My requirements:
Rigid body physics
Joint constraints and forces
Convex object collision ...
15
votes
4answers
598 views
Collisions in a real world application
Here's my problem. I'm creating a game and I'm wondering about how to do the collisions. I have several case to analyze and to find the best solution for.
I'll say it beforehand, I'm not using any ...
14
votes
5answers
2k views
Continuous collision detection between two moving tetrahedra
My question is fairly simple. I have two tetrahedra, each with a current position, a linear speed in space, an angular velocity and a center of mass (center of rotation, actually).
Having this data, ...
12
votes
2answers
216 views
Best algorithm for efficient collision detection between objects
I'm confused. Well not confused, so much as not wanting to do 6 test programs to see which algorithm is the best. So I thought I'd ask my expert friends here at SO to give me the benefit of their ...
12
votes
5answers
3k views
How to subdivide a 2d game world for better collision detection
I'm developing a game which features a sizeable square 2d playing area. The gaming area is tileless with bounded sides (no wrapping around). I am trying to figure out how I can best divide up this ...
11
votes
3answers
2k views
What's a good, simple, 2D rectangles-only collision detection algorithm?
I'm designing a collision detection game tutorial for young adults, so I want this to be as simple as possible to make it easier to explain.
The requirements are very simple. The world is 2D and ...
9
votes
4answers
265 views
3d intersections of triangles algorithm - Displaying the topmost plane
I am trying to calculate the top most intersection of an arbitrary number of planes, with no joy! I am using actionscript, but just need find an algorithm that i can implement.
Problem:
consider 3 ...
9
votes
2answers
383 views
Ball Collision: Balls Stick Together
I followed the example at http://www.emanueleferonato.com/2007/08/19/managing-ball-vs-ball-collision-with-flash/ to create ball collision on Android,
my code was organized as follows:
int N = 6; // ...
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 ...
9
votes
6answers
2k views
Good 2D Collision Response References
Hey, I'm currently looking for various methods of implementing collision response in 2D video games, something similar to this tutorial Metanet has: N Tutorial I'm looking to implement something in ...
9
votes
9answers
3k views
Broad-phase collision detection methods?
I'm building a 2D physics engine and I want to add broad-phase collision detection, though I only know of 2 or 3 types:
Check everything against everything else (O(n^2) complexity)
Sweep and Prune ...
9
votes
5answers
1k views
Collisions between game objects and the floor with regards to gravity?
How do games with gravity handle the relationship between moving things like players, monsters, or objects and the floor? Is the player constantly "falling into" the floor and being bounced back up? ...
9
votes
3answers
4k views
Broad phase collision detection - Quadtrees, BSP, etc
Collision detection is naturally an O(n^2) problem.
You have a bunch of objects and you need to check if that object is colliding with every other object. Right now that is my naive approach and ...
8
votes
3answers
436 views
Collision Detection and Collision Response
I've been trying my hand at representing a few moving/rotating objects using androids Opengl. Now I'd like to allow them to collide and respond realistically.
Researching the issue, I can find many ...
8
votes
2answers
1k views
collision detection in cocos2d
i want to detect collision detection two times in same row.
for example:-(see the below image)
the ellipse and rectangle or detcted. after that my ellipse will travelling in the straight line path ...
8
votes
5answers
1k views
Spatial Data Structures for moving objects?
I was wondering what is the best data structure to deal with a lot of moving objects(spheres, triangles, boxes, points, etc)? I'm trying to answer two questions, Nearest Neighbor and Collsion ...
7
votes
1answer
838 views
Java Game Engine
Does anybody know any good 2D game engines for Java? I'd like one that at least tries to keep up-to-date. I tried using JGame, but it didn't have the flexibility I required. I tried using Slick2D, but ...
7
votes
2answers
4k views
XNA 3d physics engine
I am looking for a 3D physics engine for XNA. I heard of some options, but what I need is:
free for commercial purposes (preferable open-source)
support for rigid body dynamics
support for ...
7
votes
3answers
3k views
How did older games do collision detection with walls, floors and ceilings?
I have been reading about collision detection in games on stackoverflow and other sites. A lot of them talk about BSPs, bounding elipses, integration etc. However, on the NES, they managed to do ...
7
votes
5answers
2k views
Resources of techniques use for collision detection in 2D?
What are in your opinion the best resources (books or web pages) describing algorithms or techniques use for collision detection in a 2D environment?
I'm just eager to learn different techniques to ...
6
votes
4answers
242 views
2d collision response between circles
I'm trying to calculate new velocities for 2 colliding balls, but can't really do that before i solve another problem. Since in digital world a real collision almost never happens, we will always have ...
6
votes
1answer
174 views
How can I get my collision to be more solid?
I'm working on a game in C# with XNA and I've been learning program in C# thanks to Nick Gravelyn's tutorials, but I've hit a snag. While I'm using Nick's collision system, I'm not using his player ...
6
votes
5answers
2k views
How do HashTables deal with collisions?
I've heard in my degree classes that a HashTable will place a new entry into the 'next available' bucket if the new Key entry collides with another.
How would the HashTable still return the correct ...
6
votes
2answers
887 views
Collision detection by sliding against a plane in XNA
I am attempting to engineer a collision detection algorithm for a custom Minecraft client I'm making. Basically, the entire world is made up of cubes, and the player (or camera) needs to be able to ...
6
votes
1answer
2k views
QuadTree for 2D collision detection
I'm currently working on a 2D shoot them up type of game, and I'm using a quad tree for my collision detections. I wrote a working quad tree that correctly pushes my actors into the nodes/leaves they ...
6
votes
2answers
717 views
Game Collision-Handling
The code given is for example purposes, not copypasta from my codebase
I'm writing a primitive, cross-platform Snake game in C++ with Boost & SDL, and I'm wondering what the best way to implement ...
6
votes
3answers
491 views
Circle to Circle Segment Collision
I'm struggling to find a rock solid solution to detecting collisions between a circle and a circle segment. Imagine a Field of View cone for a game enemy, with the circles representing objects of ...
6
votes
6answers
7k views
Javascript: Collision detection
could someone please help me to understand how collision detection works in JS? I can't use jQuery or gameQuery - already using prototype - so, I'm looking for something very simple. Not asking for ...
5
votes
4answers
138 views
Method to detect intersection between a rectangle and a polygon?
What is the best method to detect whether the red rectangle overlaps the black polygon? Please refer to this image:
5
votes
3answers
248 views
2D collision between a moving circle and a fixed line segment
In the context of a game program, I have a moving circle and a fixed line segment. The segment can have an arbitrary size and orientation.
I know the radius of the circle: r
I know the coordinates ...
5
votes
1answer
169 views
Javascript Collision Detection
I'm trying to make a snake game in javascript, but I am struggling with collision detection. I've tried various methods so far, but in desperation, have settled storing all the positions of the ...
5
votes
4answers
140 views
Detect overlapping of rectangular prisms
I was wondering given a 3D coordinate system, where i have rectangular prisms with a non-negative starting point and a non-negative size (e.g. starts at (0, 2, 5) and has a size of (9, 20, 5)): how ...
5
votes
3answers
309 views
Avoid O(n^2) complexity for collision detection
I am developing a simple tile-based 2D game. I have a level, populated with objects that can interact with the tiles and with each other. Checking collision with the tilemap is rather easy and it can ...
5
votes
4answers
527 views
Infinite cone surface * AABB intersection testing
I'm trying to discover a faster algorithm for testing whether an [EDIT: axis-aligned] conical surface intersects the volume of an axis-aligned bounding box.
The current algorithm I developed is as ...
5
votes
3answers
2k views
HTML5 Canvas: Mouse and polygon collision detection
So I'm making a tower defense game with HTML5 and Javascript. My sole problem is detecting when the mouse comes in contact with the attacker's pathway, which is necessary in order to stop the player ...
5
votes
2answers
799 views
Java HashMap detect collision
Is there a way to detect collision in Java Hash-map ? Can any one point out some situation's where lot of collision's can take place. Of-course if you override the hashcode for an object and simply ...
5
votes
3answers
196 views
Advice on collision detection APIs
I have been trying out bullet SDK for collision detection in games in my spare time but I have found it hard to learn since there are scarce examples to learn from on the Internet.
Question:
What ...
5
votes
4answers
277 views
What's the best way to implement one-dimensional collision detection?
I'm writing a piece of simulation software, and need an efficient way to test for collisions along a line.
The simulation is of a train crossing several switches on a track. When a wheel comes within ...
5
votes
5answers
741 views
Need help with implementing collision detection using the Separating Axis Theorem
So, after hours of Googling and reading, I've found that the basic process of detecting a collision using SAT is:
for each edge of poly A
project A and B onto the normal for this edge
if ...
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 ...
5
votes
4answers
7k views
XNA C# 2D Platformer Game
Hey,
I'm trying to make (figure out how to..) a 2d platformer in XNA.
I know how to create a tile grid and how to perform collision detection.
I perform collision detection on the 9 bounding tiles ...
5
votes
5answers
3k views
How do I test for collision of two moving 2d oriented bounding boxes?
The OBBs have a position(x,y), a velocity(x,y) and an orientation(Matrix). Given periodic updates, the OBBs must collide with each other, returning the fraction of the move that was deemed ...