Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there an easy way to determine if a point inside a triangle? It's 2D not 3D.

share|improve this question

6 Answers

up vote 36 down vote accepted

Here's some high quality info in this topic on GameDev, including performance issues.

And here's some code to get you started:

float sign(fPoint p1, fPoint p2, fPoint p3)
{
  return (p1.x - p3.x) * (p2.y - p3.y) - (p2.x - p3.x) * (p1.y - p3.y);
}

bool PointInTriangle(fPoint pt, fPoint v1, fPoint v2, fPoint v3)
{
  bool b1, b2, b3;

  b1 = sign(pt, v1, v2) < 0.0f;
  b2 = sign(pt, v2, v3) < 0.0f;
  b3 = sign(pt, v3, v1) < 0.0f;

  return ((b1 == b2) && (b2 == b3));
}

In general, the simplest (and quite optimal) algorithm is checking on which side of the half-plane created by the edges the point is.

share|improve this answer
That's a pretty inefficient way of solving this problem, see my answer for a better approach. – Andreas Brinck Jan 12 '10 at 14:42
1  
It's commonly used in 2D. Barycentric coordinates tend to confuse people. Also, given the cooridates of the triangle, and the point cordinate, I'm unsure about the efficiency of using barycentrics. – Kornel Kisielewicz Jan 12 '10 at 14:51
1  
@Kornel The barycentric version is more efficient in 2D as well. Your solution also has the problem that it will report a different result for points exactly on the edges of the triangle depending on wether the triangle is specified in clockwise or counter clockwise order. – Andreas Brinck Jan 12 '10 at 15:09
For my purposes (the reason I found this site) the original answer proposed by Kornel Kisielewicz is much more efficient. I'm working with an LCD display with BYTE size coordinates and a very typical microprocessor where integer multiply is a very fast instruction, and division is much, much, slower. Numeric issues are also much smaller, due to no division! all calculations are exact. Thanks, Rick – user252020 Jan 16 '10 at 4:57
So the sign() function tells you which side of the halfplane (formed by the line between p2 and p3) p1 is? – David Doria Mar 25 at 15:29

Solve the following equation system:

p = p0 + (p1 - p0) * s + (p2 - p0) * t

The point p is inside the triangle if 0 <= s <= 1 and 0 <= t <= 1 and s + t <= 1.

s,t and 1 - s - t are called the barycentric coordinates of the point p.

share|improve this answer
This is faster than the half-plane check, but perhaps a little bit harder to grasp if you are new to barycentric coordinates. – Daniel Rikowski Jan 12 '10 at 14:51
9  
@DR That's a little like saying you should use bubblesort instead of quicksort because recursion is hard to grasp ;) – Andreas Brinck Jan 12 '10 at 15:04
Those are not exactly the barycentric coordinates, just 2 of them. The 3rd is of course 1-s-t, and if all 3 are >= 0 the point is inside. – phkahler Jan 12 '10 at 18:50
@phkahler Thanks for the catch, made a minor edit of my answer. – Andreas Brinck Jan 12 '10 at 19:43
2  
With trivial exits (not implemented) in Kornel's method, his can actually far more efficient than yours. If you actually try to compute s and t you'll know what I mean. – Matthieu N. Jan 16 '10 at 22:14
show 3 more comments

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:

s = 1/(2*Area)*(p0y*p2x - p0x*p2y + (p2y - p0y)*px + (p0x - p2x)*py);
t = 1/(2*Area)*(p0x*p1y - p0y*p1x + (p0y - p1y)*px + (p1x - p0x)*py);

where A is the area of the triangle:

A = 1/2*(-p1y*p2x + p0y*(-p1x + p2x) + p0x*(p1y - p2y) + p1x*p2y);

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.

share|improve this answer
1  
That is solving the equation system :) – Andreas Brinck Jan 18 at 15:36
Yes, my point is that any criticism of your method based on the computational cost of solving the equation system is unfounded, since that doesn't have to be done as part of the algorithm. – andreasdr Jan 19 at 15:43
2  
The efficiency can be improved by not dividing through 2*Area, i.e. by calculating s´=2*|Area|*s and t´=2*|Area|*t (if the orientation of the points - clockwise or counter-clockwise - is not known, the sign of Area has to be checked, of course, but otherwise it maybe does not even need to be computed), since for checking s>0 it suffices to check s´>0. And instead of checking 1-s-t>0 it suffices to check s´+t´<2*|Area|. – coproc Feb 4 at 21:20

A simple way is to:

find the vectors connecting the point to each of the triangle's three vertices and sum the angles between those vectors. If the sum of the angles is 2*pi then the point is inside the triangle.

Two good sites that explain alternatives are:

blackpawn and wolfram

share|improve this answer
Um, that method isn't exactly efficient, and is very prone to numerical errors... – Kornel Kisielewicz Jan 12 '10 at 14:35
It's quite the opposite, it's very inefficient :-) It's just one simple way though, that's easy to implement. Can you give an example of a numerical error this would cause? – Simon P Stevens Jan 12 '10 at 14:38

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.

bool intpoint_inside_trigon(intPoint s, intPoint a, intPoint b, intPoint c)
{
    int as_x = s.x-a.x;
    int as_y = s.y-a.y;

    bool s_ab = (b.x-a.x)*as_y-(b.y-a.y)*as_x > 0;

    if((c.x-a.x)*as_y-(c.y-a.y)*as_x > 0 == s_ab) return false;

    if((c.x-b.x)*(s.y-b.y)-(c.y-b.y)*(s.x-b.x) > 0 != s_ab) return false;

    return true;
}

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.

share|improve this answer

What I do is precalculate the three face normals,

  • in 3D by cross product of side vector and the face normal vector.

  • in 2D by simply swapping components and negating one,

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:

  • a lot is precalculated so great for multiple point testing on same triangle.

  • early rejection of common case of more outside than inside points. (also if point distribution weighted to one side, can test that side first.)

share|improve this answer

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.