Is there an easy way to determine if a point inside a triangle? It's 2D not 3D.
|
Here's some high quality info in this topic on GameDev, including performance issues. And here's some code to get you started:
In general, the simplest (and quite optimal) algorithm is checking on which side of the half-plane created by the edges the point is. |
|||||||||||||||
|
|
Solve the following equation system:
The point
|
|||||||||||||||
|
|
I agree with Andreas Brinck, barycentric coordinates are very convenient for this task. However, there is no need to solve an equation system every time: just evaluate the analytical solution. Using Andreas' notation, the solution is:
where A is the area of the triangle:
Just evaluate s, t and 1-s-t. The point p is in the triangle if and only if they are all positive. EDIT: Note that the above expression for the area assumes that the triangle corner numbering is counter-clockwise. If the numbering is clockwise, a negative area will be obtained (but with correct magnitude). The algorithm itself doesn't depend on the direction of the numbering, however. |
|||||||||||
|
|
A simple way is to:
Two good sites that explain alternatives are: |
|||||
|
|
I wrote this code before a final attempt with Google and finding this page, so I thought I'd share it. It is basically an optimized version of Kisielewicz answer. I looked into the Barycentric method also but judging from the Wikipedia article I have a hard time seeing how it is more efficient (I'm guessing there is some deeper equivalence). Anyway, this algorithm has the advantage of not using division; a potential problem is the behavior of the edge detection depending on orientation.
In words, the idea is this: Is the point s to the left of or to the right of both the lines AB and AC? If true, it can't be inside. If false, it is at least inside the "cones" that satisfy the condition. Now since we know that a point inside a trigon (triangle) must be to the same side of AB as BC (and also CA), we check if they differ. If they do, s can't possibly be inside, otherwise s must be inside. Some keywords in the calculations are line half-planes and the determinant (2x2 cross product). Perhaps a more pedagogical way is probably to think of it as a point being inside iff it's to the same side (left or right) to each of the lines AB, BC and CA. The above way seemed a better fit for some optimization however. |
||||
|
|
|
What I do is precalculate the three face normals,
then inside/outside for any one side is when a dot product of the side normal and the vertex to point vector, change sign. Repeat for other two (or more) sides. Benefits:
|
||||
|
|

