<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content="text/html; charset=gb2312" http-equiv=Content-Type>
<META content="MSHTML 5.00.3103.1000" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT size=2>
<DIV><FONT size=2>Dear users:</FONT></DIV>
<DIV>&nbsp;&nbsp; <FONT size=2>I used the below code to contour a 
delaunay2D:</FONT></DIV>
<DIV><FONT size=2>&nbsp;&nbsp;&nbsp; </FONT></DIV>
<DIV><FONT size=2>&nbsp;&nbsp; 
this-&gt;points=vtkPoints::New();<BR>&nbsp;&nbsp;&nbsp; for(int 
i=0;i&lt;100;i++) <BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
this-&gt;points-&gt;InsertPoint(i,this-&gt;math-&gt;Random(0,1),this-&gt;math-&gt;Random(0,1),0.0);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
}</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT size=2>&nbsp;&nbsp;&nbsp; 
this-&gt;profile=vtkPolyData::New();<BR>&nbsp;&nbsp;&nbsp; 
this-&gt;profile-&gt;SetPoints(points);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
</FONT></DIV>
<DIV><FONT size=2>&nbsp;&nbsp;&nbsp; 
this-&gt;del=vtkDelaunay2D::New();<BR>&nbsp;&nbsp;&nbsp; 
this-&gt;del-&gt;SetInput(profile);<BR>&nbsp;&nbsp;&nbsp; 
this-&gt;del-&gt;BoundingTriangulationOn();<BR>&nbsp;&nbsp;&nbsp; 
this-&gt;del-&gt;SetTolerance(0.00001);<BR>&nbsp;&nbsp;&nbsp; 
this-&gt;del-&gt;SetAlpha(0.1);<BR>&nbsp;&nbsp;&nbsp; 
this-&gt;del-&gt;Update();</FONT></DIV>
<DIV><FONT size=2><BR>&nbsp;&nbsp;&nbsp; 
this-&gt;shrink=vtkShrinkPolyData::New();<BR>&nbsp;&nbsp;&nbsp; 
shrink-&gt;SetInput(del-&gt;GetOutput());</FONT></DIV>
<DIV><FONT size=2>&nbsp;&nbsp;</FONT></DIV>
<DIV><FONT size=2>&nbsp;&nbsp;&nbsp; 
this-&gt;contours=vtkContourFilter::New();<BR>&nbsp;&nbsp;&nbsp; 
contours-&gt;SetInput(shrink-&gt;GetOutput());<BR>&nbsp;&nbsp;&nbsp; float 
range[1];<BR>&nbsp;&nbsp;&nbsp; range[0]=0.0;range[1]=10;<BR>&nbsp;&nbsp;&nbsp; 
contours-&gt;GenerateValues(5,range);<BR>&nbsp;&nbsp;&nbsp; </FONT></DIV>
<DIV><FONT size=2>&nbsp;&nbsp;&nbsp; 
this-&gt;Contourmap=vtkPolyDataMapper::New();<BR>&nbsp;&nbsp;&nbsp; 
Contourmap-&gt;SetInput(contours-&gt;GetOutput());<BR>&nbsp;&nbsp;&nbsp; 
Contourmap-&gt;SetScalarRange(0.0,1.2);</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT size=2>&nbsp;&nbsp;&nbsp;&nbsp; 
this-&gt;dgx=vtkActor::New();<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
dgx-&gt;SetMapper(Contourmap);</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT size=2>&nbsp; But the vtkContourfilter reported:"no data to contour". 
How can&nbsp;I use the vtkCountourFilter to do it?</FONT></DIV>
<DIV><FONT size=2>&nbsp;&nbsp;Thanks any help!</FONT></DIV>
<DIV><FONT size=2></FONT>&nbsp;</DIV>
<DIV><FONT size=2>zhangyu</FONT>&nbsp;</DIV></FONT></DIV></BODY></HTML>