I'm using Delaunay to triangulate a concave polygon, but it fills in the concavities. How do I automatically remove the triangles that are outside the polygon boundaries?

link|improve this question

67% accept rate
2  
Is this what you actually want to do? The Delaunay edges may cross the polygon edges, so using this to triangulate a polygon is not going to always give you a valid triangulation of the polygon. – thouis Dec 17 '09 at 0:41
feedback

2 Answers

up vote 2 down vote accepted

Self-answer: in some cases, this is impossible. I needed to use a constrained Delaunay algorithm: http://www.cs.cmu.edu/~quake/triangle.delaunay.html

link|improve this answer
feedback

You shouldn't, you should find a Delauney routine that handles boundaries correctly.

Alternately you could, assuming you know the edges, go through every triangle and delete those that cross an edge. Search for segment-segment interestion tests for code to do this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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