<div>no there's no warning.and the problem is running &nbsp;when&nbsp;excuting </div><FONT size=2>  <div>m_polydata-&gt;InsertNextCell(VTK_VERTEX, 1, &amp;cellId);</div>  <div></FONT>because i tried to run without this line,and there no&nbsp;error but nothing appear.</div>  <div>&nbsp;<BR><BR><B><I>Amy Squillacote &lt;amy.squillacote@kitware.com&gt;</I></B> a écrit&nbsp;:</div>  <BLOCKQUOTE class=replbq style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #1010ff 2px solid">Please keep the discussion on the vtkusers mailing list rather than<BR>emailing me directly. That way the discussion is archived and other<BR>people can contribute to finding a solution to your problem.<BR><BR>Also, please describe in more detail what run-time problem you're<BR>seeing. Is there an error or warning message displayed? Does the program<BR>crash? (If so, a stack trace would be helpful.)<BR><BR>- Amy<BR><BR>Miladi Med Amine wrote:<BR>&gt; i tried to do this;but the problem inthe running
 there is a beug in <BR>&gt; vtkcellarray.h.<BR>&gt; what's wrong.<BR>&gt; Thanks<BR>&gt;<BR>&gt; */Amy Squillacote <AMY.SQUILLACOTE@KITWARE.COM>/* a écrit :<BR>&gt;<BR>&gt; Sorry, I must have gotten in a hurry when I typed that. I meant<BR>&gt; vtkIdType.<BR>&gt;<BR>&gt; - Amy<BR>&gt;<BR>&gt; medamine wrote:<BR>&gt; &gt; Thanks<BR>&gt; &gt; do you mean vtkIdTypes?because using vtkCellType i get an error<BR>&gt; that did not<BR>&gt; &gt; exist(vtkCellType.h is included).<BR>&gt; &gt; so i do this:<BR>&gt; &gt; vtkIdTypes cellId = i;<BR>&gt; &gt; m_polydata-&gt;InsertNextCell(VTK_VERTEX, 1, &amp;cellId);<BR>&gt; &gt; but, the debugger is declanched.<BR>&gt; &gt;<BR>&gt; &gt;<BR>&gt; &gt; Amy Squillacote wrote:<BR>&gt; &gt;<BR>&gt; &gt;&gt; In VTK, you must have cells to render. If your dataset only<BR>&gt; contains<BR>&gt; &gt;&gt; points and you want to render points, you will need to create a<BR>&gt; &gt;&gt; vtkVertex cell per point in your dataset. The code to do
 that<BR>&gt; would look<BR>&gt; &gt;&gt; something like the following.<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt; Inside your while loop, before the line "i++;", add these lines.<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt; vtkCellType cellId = i;<BR>&gt; &gt;&gt; m_polydata-&gt;InsertNextCell(VTK_VERTEX, 1, &amp;cellId);<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt; - Amy<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt; medamine wrote:<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt;&gt; Hi;<BR>&gt; &gt;&gt;&gt; i'm trying to create a mesh from .txt file in witch i have only<BR>&gt; &gt;&gt;&gt; points.after<BR>&gt; &gt;&gt;&gt; creation i get a mesh with 1024 pts but nothing appear in the<BR>&gt; screan when<BR>&gt; &gt;&gt;&gt; rendring.<BR>&gt; &gt;&gt;&gt; Thanks<BR>&gt; &gt;&gt;&gt;<BR>&gt; &gt;&gt;&gt; FILE *fp;<BR>&gt; &gt;&gt;&gt; float x=0;<BR>&gt; &gt;&gt;&gt; float y=0;<BR>&gt; &gt;&gt;&gt; float z=0;<BR>&gt; &gt;&gt;&gt; const float p[3]={0,0,0};<BR>&gt; &gt;&gt;&gt; char *c;<BR>&gt; &gt;&gt;&gt; int i=0;<BR>&gt;
 &gt;&gt;&gt; vtkPolyData *m_polydata=vtkPolyData::New();<BR>&gt; &gt;&gt;&gt; vtkPoints *points = vtkPoints::New();<BR>&gt; &gt;&gt;&gt; float pts[3]={10,10,10};<BR>&gt; &gt;&gt;&gt; if((fp=fopen(resfile,"r"))==NULL)<BR>&gt; &gt;&gt;&gt; { printf("Le fichier FILES ne veut pas s'ouvrire! \n"); exit(1);}<BR>&gt; &gt;&gt;&gt; while(!feof(fp))<BR>&gt; &gt;&gt;&gt; { fscanf(fp,"%c %f %f %f",&amp;c,&amp;x,&amp;y,&amp;z);<BR>&gt; &gt;&gt;&gt; pts[0]=x;pts[1]=y;pts[2]=z;<BR>&gt; &gt;&gt;&gt; points-&gt;InsertPoint(i,pts);<BR>&gt; &gt;&gt;&gt; i++;<BR>&gt; &gt;&gt;&gt; }<BR>&gt; &gt;&gt;&gt; m_polydata-&gt;SetPoints(points);<BR>&gt; &gt;&gt;&gt; m_polydata-&gt;Update();<BR>&gt; &gt;&gt;&gt;<BR>&gt; &gt;&gt;&gt; vtkPolyDataWriter *writer=vtkPolyDataWriter::New();<BR>&gt; &gt;&gt;&gt; writer-&gt;SetFileName(plyfile);<BR>&gt; &gt;&gt;&gt; writer-&gt;SetInput(m_polydata);<BR>&gt; &gt;&gt;&gt; writer-&gt;Update();<BR>&gt; &gt;&gt;&gt;<BR>&gt; &gt;&gt;&gt; /////////test
 visualisation<BR>&gt; &gt;&gt;&gt; vtkPolyDataMapper *m_polydataMapper = vtkPolyDataMapper::New();<BR>&gt; &gt;&gt;&gt; m_polydataMapper-&gt;SetInput(m_polydata);<BR>&gt; &gt;&gt;&gt; // m_polydataMapper-&gt;SetScalarRange(0,256);<BR>&gt; &gt;&gt;&gt; vtkActor *m_Actor = vtkActor::New();<BR>&gt; &gt;&gt;&gt; m_Actor-&gt;SetMapper(m_polydataMapper);<BR>&gt; &gt;&gt;&gt; //m_Actor-&gt;GetProperty()-&gt;SetRepresentationToPoints();<BR>&gt; &gt;&gt;&gt; m_Actor-&gt;GetProperty()-&gt;SetColor(1, 0, 0);<BR>&gt; &gt;&gt;&gt; // m_Actor-&gt;GetProperty()-&gt;SetDiffuseColor(1,1,1);<BR>&gt; &gt;&gt;&gt; vtkRenderer *m_renderer = vtkRenderer::New();<BR>&gt; &gt;&gt;&gt; vtkRenderWindow *m_renWin = vtkRenderWindow::New();<BR>&gt; &gt;&gt;&gt; m_renWin-&gt;AddRenderer(m_renderer);<BR>&gt; &gt;&gt;&gt; vtkRenderWindowInteractor *m_iren =<BR>&gt; vtkRenderWindowInteractor::New();<BR>&gt; &gt;&gt;&gt; m_iren-&gt;SetRenderWindow(m_renWin);<BR>&gt; &gt;&gt;&gt;
 vtkInteractorStyleTrackballCamera *m_style =<BR>&gt; &gt;&gt;&gt; vtkInteractorStyleTrackballCamera::New();<BR>&gt; &gt;&gt;&gt; m_iren-&gt;SetInteractorStyle(m_style);<BR>&gt; &gt;&gt;&gt; m_renderer-&gt;AddActor(m_Actor);<BR>&gt; &gt;&gt;&gt; m_renderer-&gt;SetBackground(0, 0, 0);<BR>&gt; &gt;&gt;&gt; m_renWin-&gt;SetSize(300,300);<BR>&gt; &gt;&gt;&gt; m_renWin-&gt;Render();<BR>&gt; &gt;&gt;&gt; m_iren-&gt;Start();<BR>&gt; &gt;&gt;&gt; //Free<BR>&gt; &gt;&gt;&gt; m_polydata-&gt;Delete();<BR>&gt; &gt;&gt;&gt; m_polydataMapper-&gt;Delete();<BR>&gt; &gt;&gt;&gt; m_Actor-&gt;Delete();<BR>&gt; &gt;&gt;&gt; m_renderer-&gt;Delete();<BR>&gt; &gt;&gt;&gt; m_renWin-&gt;Delete();<BR>&gt; &gt;&gt;&gt; m_iren-&gt;Delete();<BR>&gt; &gt;&gt;&gt;<BR>&gt; &gt;&gt;&gt;<BR>&gt; &gt;&gt; --<BR>&gt; &gt;&gt; Amy Squillacote<BR>&gt; &gt;&gt; Kitware, Inc.<BR>&gt; &gt;&gt; 28 Corporate Drive<BR>&gt; &gt;&gt; Clifton Park, NY 12065<BR>&gt; &gt;&gt; Phone: (518) 371-3971 x106<BR>&gt;
 &gt;&gt;<BR>&gt; &gt;&gt; _______________________________________________<BR>&gt; &gt;&gt; This is the private VTK discussion list.<BR>&gt; &gt;&gt; Please keep messages on-topic. Check the FAQ at:<BR>&gt; &gt;&gt; http://www.vtk.org/Wiki/VTK_FAQ<BR>&gt; &gt;&gt; Follow this link to subscribe/unsubscribe:<BR>&gt; &gt;&gt; http://www.vtk.org/mailman/listinfo/vtkusers<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt;<BR>&gt; &gt;<BR>&gt; &gt;<BR>&gt;<BR>&gt; -- <BR>&gt; Amy Squillacote<BR>&gt; Kitware, Inc.<BR>&gt; 28 Corporate Drive<BR>&gt; Clifton Park, NY 12065<BR>&gt; Phone: (518) 371-3971 x106<BR>&gt;<BR>&gt;<BR>&gt; ------------------------------------------------------------------------<BR>&gt; Ne gardez plus qu'une seule adresse mail ! Copiez vos mails <BR>&gt; <HTTP: yahoo-fr www.trueswitch.com />vers Yahoo! Mail <BR><BR>-- <BR>Amy Squillacote<BR>Kitware, Inc.<BR>28 Corporate Drive<BR>Clifton Park, NY 12065<BR>Phone: (518) 371-3971
 x106<BR><BR><BR></BLOCKQUOTE><BR><p>&#32;



      

      <hr size="1"> 
Ne gardez plus qu'une seule adresse mail ! <a href="http://www.trueswitch.com/yahoo-fr/">Copiez vos mails</a> vers Yahoo! Mail