<P>
Hi everyone,<BR>
Iam curretnly trying to figure out to use contour filters.<BR>
I have written something ,but when I execute it all i get is a popup window saying "no data to contour".<BR>
I dont know what is wrong, I have attached the code, please help me out.<BR>
What Iam trying to do is create a unstructured grid of random points and then draw a contour. I dont know what mistake I have done.<BR>
Thank you,<BR>
David Michell<BR>
<BR>
main()<BR>
{<BR>
double data[1500];<BR>
for (int i=0;i<1500;i++)<BR>
{<BR>
data[i*3+0]=rand()/126345.23;<BR>
data[i*3+1]=rand()/346345.33;<BR>
data[i*3+2]=rand()/456345.34;<BR>
}<BR>
<BR>
vtkIdType *type;<BR>
type=new vtkIdType[500];<BR>
for(int counter=0;counter<500;counter++)<BR>
{<BR>
type[counter]=counter;<BR>
}<BR>
<BR>
vtkCellArray *cellarray=vtkCellArray::New();<BR>
cellarray->Allocate(cellarray->EstimateSize(500,1));<BR>
cellarray->InsertNextCell(500);<BR>
cellarray->ReplaceCell(0,500,type);<BR>
<BR>
int celltype[500];<BR>
memset(celltype,1,sizeof(int)*500);<BR>
<BR>
vtkDoubleArray *pointset=vtkDoubleArray::New();<BR>
pointset->SetNumberOfComponents(3);<BR>
pointset->SetNumberOfTuples(500);<BR>
pointset->SetArray(data,1500,1);<BR>
<BR>
vtkPoints *points=vtkPoints::New();<BR>
points->Allocate(1500);<BR>
points->SetData(pointset);<BR>
<BR>
vtkUnstructuredGrid *grid=vtkUnstructuredGrid::New();<BR>
grid->Allocate(1500);<BR>
grid->SetPoints(points);<BR>
grid->SetCells(celltype,cellarray);<BR>
<BR>
vtkCountourFilter *contour=vtkContourFilter::New();<BR>
countour->SetInput(grid);<BR>
contour->GenerateValues(13,0.0,0.42);<BR>
<BR>
//code for mapper ,actor renderer, render window and interactor goes here<BR>
}<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
</P>
<br><br>
<A target="_blank" HREF="http://clients.rediff.com/signature/track_sig.asp"><IMG SRC="http://ads.rediff.com/RealMedia/ads/adstream_nx.cgi/www.rediffmail.com/inbox.htm@Bottom" BORDER=0 VSPACE=0 HSPACE=0></a>