This question came up on the list many times in the past but doesn&#39;t seem to have been answered.<br><br>I modified the &quot;constrainedDelaunay&quot; example to tesselate the interior of a simple curve drawn with the mouse. The result looks fine if I constrain the triangulation by setting the lines of the input polygon data ( polyData-&gt;SetLines(); delauney-&gt;SetInput(polyData) ), except the output triangulation fills the whole convex hull of the input curve, which is not what I want. If I try to constrain the triangulation by setting the polys of the input polygon ( polyData-&gt;SetPolys(); delaunay-&gt;SetInput(polyData) ), I get the following warning:<br>
<pre>Warning: In vtkDelaunay2D.cxx, line 961<br>vtkDelaunay2D (0x819f2d8): Edge not recovered, polygon fill suspect<br></pre>And most of the time, one or 2 holes in the triangulation. Anyone knows how to avoid that?<br><br>
s.<br>