Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When there are two objects going to collide, I check them with CGRectIntersectsRect. However, before it returns me with YES (they collide), they are already overlapped. Is there any other way to detect and resolve collision?

My workaround is to compare their Y axis and move the object far apart from each other, once they are detected collision.

Also, one of my objects is a circle, is there any other functions for iPhone SDK to detect the collision better? (currently I treat the circle as a rectangle, as its frame is a rectangle)

share|improve this question

2 Answers

up vote 2 down vote accepted

Here are some references you might try:

share|improve this answer
thanks for finding me references! that helps! i hope iPhone SDK will release functions for circle-rectangle collision detection. – Shivan Raptor Oct 21 '09 at 4:13

You can use CGPath to detect collission for irregular rigid bodies. See http://bobueland.com/cocos2d/?p=379

share|improve this answer
Thanks for replying my old question. Your solution assumes the use of cocos2d engine, but at the time I ask this question, I didn't use the engine. Now, cocos2d works for me pretty well. – Shivan Raptor Nov 28 '11 at 1:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.