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.

learn more… | top users | synonyms

-1
votes
0answers
19 views

detect circle between some shapes [closed]

in my image has some shapes(circle,square,triangle). how can I detect circle between other shapes? and can tell me how many circle there is in my image.many thanks I = imread('c:\safa\test.bmp'); ...
0
votes
0answers
12 views

Collision Detection Kit Faulting

I'm quite new to AS3. I'm using the CollisionDetectionKit rather than the hitTest methods because it's more accurate. I've implemented the library. I don't think I understand its concept of degrees ...
0
votes
1answer
15 views

Problems with Brick Collision Detection in BreakOut game

I've done my first BreakOut Game while completing an assignment for Stanford University CS Online Course for java. However I noticed during play testing that when the ball sometimes hits a brick ...
1
vote
0answers
28 views

Checking collision between Rectangle and Shape

In my game the player uses a Rectangle for his bounding box, he can do this because I only need to rotate the player image and not the acctual rectangle but for a eletric beam that one of the bosses ...
0
votes
1answer
63 views

Correct collision handling

First of all, this will be Open Source, and you will be mentioned for the help. We've been programming a Super Mario Remake for the iPhone with Cocos2d for school. It looks pretty great, and we ...
0
votes
1answer
23 views

Get co-ordinate points of image after rotation and translation?

I currently draw some images (obstacles) to the canvas but I perform context.rotate() and context.translate() before I draw them (at 0,0 point after the point translation). I need to create ...
0
votes
0answers
12 views

How to apply impulse on specific bodies

I have say b2body[10] *body with b2_dynamic type with userData=ballSprite. gravity and accelerometer is applied in the world. I have a bucket at the center of the screen (portrait orientation). I have ...
-2
votes
0answers
25 views

How to count collisions? [closed]

I have a problem that can`t resolve in any way. I drag an image and make it collide with a static one. What happens after is that this image hides and instead appears a number. What I want to do is to ...
0
votes
0answers
26 views

Rect Collision rect.intersects(rect) does not work

Edit : Got it to work by moving the rectangle objects into the ActionListener. The problem was the the cords of the rectangle were not being updated.
-1
votes
0answers
37 views

AS3 movieclip detection [duplicate]

I am trying to make water particles that stay inside of a glass bottle and if they move out of the bottle, it stops moving, as if it reaches the bottom. The proble is that the water stops just outside ...
-3
votes
0answers
39 views

C# XNA: collisions don't work [closed]

I've tried to make collisions for my first XNA Game, but it don't work - player can pass trough blocks. I was reading all XNA tutorials, but still I don't know how do I fix it. Could you help me? I'm ...
0
votes
0answers
30 views

Java collision detection with rotation

Basically I'm trying to make a game where you have little car going around the map with java and LWJGL. Everything was going good until I've started to do collisions. Well fist I'm trying to draw hit ...
0
votes
0answers
31 views

Collision between two images with transparency

I'm writing a game from scratch in Java and I need to detect a collision between two images that are irregularly shaped and have some transparent pixels. I'm already able to detect a collision ...
0
votes
1answer
37 views

Manual Collision Detection in Lua

So Im working on a simple rectangle rectangle collision for my game in Lua. I have an algorithm i was using for other projects for this type of collision but its in C++ and I know it works. The ...
0
votes
2answers
49 views

Algorithm Help - hit test for small objects

When implementing a selection algorithm in a processing sketch I cycle through each object in the scene and check to see if it is within a few pixel range of where the mouse clicked. There are lots of ...
1
vote
1answer
33 views

XNA 4.0: first person camera movement on terrain jitter

Lately I've succeed in implementing first person camera and terrain collision but I've hit yet another wall which is camera jittering when moving across the height-map. While it's not so uncommon ...
1
vote
3answers
39 views

Error: taking address of temporary [-fpermissive]

I've been looking into this for a few hours, to no avail. Basically I have struct rectangle { int x, y, w, h; }; rectangle player::RegionCoordinates() // Region Coord { ...
1
vote
1answer
61 views

Separating Axis Theorem in Python/Pyglet

I'm trying to make a (sort-of) clone of Asteroids in Python using Pyglet. I figured I'd try to get a little fancy and implement the separating axis theorem to do collision. I got it to work, but the ...
0
votes
1answer
49 views

As3 collision detection with a movieclip array?

Ok my xChar.character is my character movieclip and xMap the instance of the class building the map. From the xMap i add movieclip sliced from a image using variable which is inside a function. I do ...
0
votes
0answers
23 views

Collision detection is not working?

I am developing a game in cocos2d and am working on the whole walking through walls part. I am using the accelerometer and here is my code from that: - (void)update:(ccTime)dt { [self ...
0
votes
1answer
42 views

Rectangle2D.contains() not properly detecting coordinates in boundaries

I am writing a tower defense game for my Intro to CS2 class. I have this piece of code to find the next coordinate on the map for an enemy unit: def findNextCoordinate(): (Double, Double) = { ...
0
votes
0answers
27 views

Check if above block and find closest if x coords overlap

I've got the following code: http://definedcodehosting.com/pebble.txt Basically in this section: GRect r1 = layer_get_frame(&player.playerContainer.layer.layer); for (bcount = 0; bcount ...
1
vote
1answer
34 views

Javascript Collision Detection between circle and polygon?

I'm unsure how to go about defining the area for a collision detection function when I have a polygon that looks like: ______ / _____| / / / / --- I draw the polygon using lineTo() a few ...
0
votes
1answer
32 views

OpenGL: 3-D box array bounding box collission

I am at the stage of my development process where I want to implement collision. Now i can think of a simple way of doing it, if the "camera"'s x,y or z are inside the position of a certain cube then ...
2
votes
2answers
54 views

Android Create a rectangle within an image view

Hi i wanted to know how can I create a rectangle inside an imageview. As you can see in the image (http://i.stack.imgur.com/ZCpdT.png ) I need to create a rectangular internal and the external, this ...
0
votes
0answers
26 views

jmonkeyengine movement too fast for collision detection

Can anyone help please? I am making a Java game using JMonkeyEngine and I have followed the tutorial on their site to shoot balls (bullets) at a wall. I get how everything works, but when I increase ...
0
votes
0answers
23 views

Android - Help me with collision detect(with Paint Example xD)

I have problems with the collision detect, or rather, I can check whether the collision occurs, but can not prevent the images overlap. Because of my English maybe I can not explain well my problem, ...
0
votes
1answer
14 views

nape remove body in collision

I have a function that detects when the objects collide but how do I delete one of them? private function fruitToFloorCollision(collision:InteractionCallback):void { // TODO Auto ...
-6
votes
0answers
63 views

Best way to do collision detection for a complicated maze [closed]

I have a maze which is made up of 10x10 tiles but there is an awful lot of them so I didn't want to have to do tile collision. What would be the best way to do it? I heard about per pixel collision ...
2
votes
1answer
45 views

Collision detection using QuadTree in AS3

Ok. I managed to make and use QuadTree for my collision Detection alghorithm and it works just fine. I have my enemies and put them in the QuadTree, than retrieve the candidates that could possibly ...
0
votes
1answer
59 views

Logic flow of rectangle to N-rectangles collision detection

I have a really hard time here figuring out the error in my program. My code only works in 2 rectangles but if I increment number of rectangle, it doesn't work at all. My program flows like this: ...
1
vote
0answers
12 views

stop a player when collides with tiles in android

I am trying to make a simple game on the framework badlogicgames by mario zechner. I am simply trying to place some tiles say..trees, bushes etc and want my player to stop when it passes thru them ...
0
votes
0answers
50 views

How can i calculate elastic collisions with mass

I am currently working in OpenTK and trying to achieve some simple 2D elastic collision detection following a tutorial, however, this tutorial is entirely theory and i'm struggling with some elements ...
-1
votes
1answer
26 views

How to detect collision between Groups - Java3D

I have made a room in Java3D and added the ability for the User to move selected objects using the keyboard. I was just wondering if it would be possible to detect a collision between two of my ...
1
vote
1answer
38 views

Detecting surface intersection in lispbuilder-sdl

I am working on making a game in Common Lisp, using Lispbuilder-SDL. I am currently writing a function to check for collision between two surfaces. I need to find out if a surface A intersects with ...
0
votes
1answer
38 views

Get vertex-coordinates of an image with the help of canvas imageData

I need to get the position of each edge for some sprites and have no idea how to accomplish this. Here's an example image of what I mean: I tried something with canvas and getImageData but not ...
0
votes
1answer
37 views

stopping sprites from overlapping/going through each other

In the game that I am currently working on I don't want the zombies to be able to overlap each other. Therefore, I want to make it so that when they do collide with each other they will get moved back ...
0
votes
1answer
54 views

cocos-2d collision detection with a rect and falling objects

I've got a player sprite that I can move around on the screen using the accelerometer. Now I want to check if it collides with any of the many randomly falling objects I've created. I know about the ...
1
vote
0answers
44 views

Collision detection in cocos2d 2.1 for CCPhysicsSprite

enter code hereToday,I've faced new issue regarding collision detection between two CCPhysicsSprite objects. I am using "MyContactListener" class for detect collision. Please check some part of my ...
0
votes
1answer
126 views

C++ Rectangle to rectangle Collision

I'm having a really bad time here looking for the error in my code. My collision detection won't work here even the algorithm I searched in Google. void PollEvents() { for (int i = 0;i < ...
0
votes
0answers
21 views

Checking collision between player and Line2D

Rectangle r10 = player.getBounds(); Rectangle r20 = new Rectangle((int)line3.getX1(),(int)line3.getY1(),(int)line3.getX2(),(int)line3.getY2()); if(r10.intersects(r20)){ ...
1
vote
1answer
89 views

Minkowski sum for rectangle intersection calculation

I've been looking into the best way to determine where 2 rectangles intersect and have been looking into using the Minkowski sum. I would be grateful if someone could explain how to determine when ...
0
votes
1answer
35 views

Collision detection on a 2d side scroller: not colliding properly

I'm having a problem with my Collision method below. the problem is when there are two enemies in the game. It intersects one enemy within the loop, and proceeds to return true for colliding. But if ...
0
votes
0answers
16 views

Android drag as possible, only away from the collision

hi all as the title I wanted to know how to make sure that once the collision occurred, the drag and drop function is applicable only in the opposite direction to the collision, to avoid that the two ...
0
votes
0answers
40 views

Preventing drag movement collisions between two ImageViews

I have a problem detecting a collision between two objects, in this case two ImageViews which look like this: I'm able to determine the collision, but I can not make sure that the two images do not ...
1
vote
2answers
61 views

Php code fails to give corrent result most likely logic error

I have been racking my brain on this problem for the last few days and for the life of me can seem to find the issue code. Essentially this code generates a random amount of objects with an x and y ...
7
votes
1answer
107 views

Irrlicht collision with an invisible mesh

I'm writing a Final Fantasy-like game engine, with 2D backgrounds and 3D models with Irrlicht. To calculate collisions with the objects in the background I use a invisible mesh like this: I have ...
1
vote
1answer
68 views

Find the closest brick to the ball in a bricks breaking game

I am building a JavaScript bricks breaking game from scratch for fun. A demo can be played here. However, you will see that all collisions are not handled. In an attempt to handle collisions by ...
1
vote
0answers
36 views

Collision Not Working With JavaScript (Screenshot & Collision Function Included)

I'm having some issues with collision detection; The function I am using to check if a rectangle intersects another is: function box_col(ax1, ay1, ax2, ay2, bx1, by1, bx2, by2) { return !((ax2 ...
0
votes
1answer
73 views

Flash Collision Detection (Platformer game)

I am trying to make a platformer game in flash, using ActionScript 3. Currently everything is working except for one thing. The Problem: When the player collides with the bottom of a platform, if ...

1 2 3 4 5 26