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.

I haven't taken any advanced math courses or anything (I'm still in high school) and I just don't really understand all the triangle collision systems online.

I have two triangular objects in a 2D space. How should I write Obj-C code so that a collision/intersection between the two can be detected? I'm stumped.

share|improve this question

1 Answer

up vote 1 down vote accepted

Perhaps one of these techniques will help:

http://www.blackpawn.com/texts/pointinpoly/default.html

Basically, to simplify things you could start by just trying to figure out if each of the three points of a triangle is inside the other one - since having a corner from one or the other enter the other one is the only way they can be overlapping.

share|improve this answer
The thing is... I don't really "understand" it, to the point that I can't convert it to Obj-C code. I haven't learned anything past Algebra 2, you see :D. Is there like a C version of CrossProduct()? – Vervious Jul 6 '10 at 17:24

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.