Trying to triangulate a set of simple 2d polygons, I've come up with this algorithm:

  • 1) For each vertex in the polygon, compute the angle between the two linked edges
  • 2) Sort vertices by decreasing angle relative to the interior of the polygon
  • 3) If there is less than 3 vertices in the set, we're done
  • 4) Take the last vertex in the set and output the triangle formed by it and its two neighbours
  • 5) Remove the vertex from the set
  • 6) Update the angle of the two neighbours
  • 7) Jump to 2

I've tested it, and found it to work even on really big and complicated simple 2d polygon (it don't work for polygon with a hole or self intersecting polygons).

Is there corner cases that will produce degenerate result?

Does this algorithm is a known one?

If not, I would like to be sure this algorithm is rock solid but I have not the mathematical background to prove it.

Thanks a lot.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

You are doing a version of "ear clipping" approach to triangulation, see: http://en.wikipedia.org/wiki/Polygon_triangulation

Your algorithm fails if another polygon vertex (say from the other side of the polygon) ends up inside the triangle 'ear' you form. Consider this example:

enter image description here

Your algorithm will choose A first, and make a triangle with the two adjacent edges (connected with the dashed line). But this triangle includes another vertex (B) and is clearly incorrect.

The generalized ear clipping approach depends on finding ears you can clip off that do not have any included vertices.

link|improve this answer
feedback

If I'm understanding you correctly, you're chopping off triangles starting with the smallest interior angle. This can fail if the polygon is not convex. Consider a polygon with vertices (in order) at: (0,0) (10,9) (9,9) (9,10). The smallest angle is the one at the origin, but you can't safely cut off that triangle.

(If your polygon is convex, then you can just pick any vertex, remove a triangle there, and repeat. So I'm guessing you want your algorithm to work even for non-convex polygons.)

link|improve this answer
Ohh... I gess you're right... sigh. Damn it! – Nicolas Repiquet Mar 9 '11 at 15:46
feedback

Your Answer

 
or
required, but never shown

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