How can I tell whether two triangles intersect in 2D Euclidean space? (i.e. classic 2D geometry) given the (X,Y) coordinates of each vertex in each triangle.
|
2
|
|
|
|
|
|
One way is to check if 2 sides of triangle A intersect with any side of triangle B. There is the case where a triangle A may be inside triangle B. When we test collisions on polygons we also have a surrounding rectangle for our polygons. So we first test for rectangle collisions and if there is a hit we proceed with polygon collision detection. |
|||
|
|
|
|
What you're really looking for is a "Point in Polygon" algorithm. If any of the points of one triangle are in the other, they are intersecting. Here is a good question to check out. http://stackoverflow.com/questions/217578/point-in-polygon-aka-hit-test |
||||
|
|
|
For this type of problem there are many algorithms in Graphics Gems (http://tog.acm.org/resources/GraphicsGems/) and althought they are in C they should recode very easily. In your current case you could use http://tog.acm.org/resources/GraphicsGems/gemsii/xlines.c and iterate over all lines in boith triangles (i.e. 9 possible intersections). I haven't looked but there may even be algorithms that solve your problem directly. |
||
|
|
|
|
As stated, you'll need to check that a point is inside a triangle. The simplest way to check if a point is inside a closed polygon is to draw a straight line in any direction from the point and count how many times the line crosses a vertex. If the answer is odd then the point is in the polygon, even, then it's outside. The simplest straight line to check is the one going horizontally to the right of the point (or some other perpendicular direction). This makes the check for vertex crossing nearly trivial. The following checks should suffice:
|
||
|
|
