<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
Hi,
<br>I just found the problem,
<p>In fact I didn't see very well that the vtkPolyData need an order in
the definition of certain cells.
<p>Bye.
<p>Vincent BAUDET wrote:
<blockquote TYPE=CITE>Hello everybody,
<p>I have began to use vtk in order to know if it was accurate enough for
modeling and animation.
<p>I used a vtkPolyData
<br>it seemed very easy to use with the cube example in C++
<br>but when i tried to make my own model :
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
first of all, 2 tetrahedra with links between points, I was surprised to
find that my polydata had the origin
<br>point, that I never put in it and that this point was linked to the
others or that some links I never defined were
<br>obtained.
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
I then tried to change the order in the link affectation at one time this
point disapear.
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Almost, I used the same code in an other PC, and the point was not added....
(strange)
<p>Is there any allocation I don't do and I should do?
<br>Is there any people that can answer what happened?
<p>Here is one example of code (look&nbsp; at the definition liens....
and try with this state and try with the change I used):
<p>#include "vtkPoints.h"
<br>#include "vtkCellArray.h"
<br>#include "vtkPolyData.h"
<br>#include "vtkPolyDataMapper.h"
<br>#include "vtkActor.h"
<br>#include "vtkRenderer.h"
<br>#include "vtkRenderWindow.h"
<br>#include "vtkRenderWindowInteractor.h"
<br>#include "vtkMath.h"
<br>#include "vtkFloatArray.h"
<p>float pt[5][3]={{10,10,10} , {20,30,10} , {30,20,10} , {20,20,35}, {15,45,65}};
<p>//Look Here
<p>int liens[9][2]={{1,2} ,{2,0}, {1,0},{1,3},{3,0},{2,3},{3,4},{4,2},{1,4}};
// replace (1,4) by (4,1)
<p>int faces[7][3]={{2,1,0},{0,1,3},{0,2,3},{1,2,3},{4,2,3},{4,3,1},{4,1,2}};
<p>int main()
<br>{
<br>&nbsp; unsigned int i;
<p>&nbsp; vtkPolyData *cube=vtkPolyData::New();
<p>&nbsp; vtkPoints *points=vtkPoints::New();
<p>&nbsp; for(i=0;i&lt;(unsigned int)(sizeof(pt)/(3*sizeof(float)));i++)points->InsertPoint(i,pt[i]);
<p>&nbsp; vtkCellArray *links=vtkCellArray::New();
<p>&nbsp; for(i=0;i&lt;(unsigned int)(sizeof(liens)/(2*sizeof(int)));i++)links->InsertNextCell(VTK_LINE,liens[i]);
<p>&nbsp; vtkCellArray *polys=vtkCellArray::New();
<p>&nbsp; for(i=0;i&lt;(unsigned int)(sizeof(faces)/(3*sizeof(int)));i++)links->InsertNextCell(VTK_TRIANGLE,faces[i]);
<p>&nbsp; cube->SetPoints(points);
<br>&nbsp; points->Delete();
<p>&nbsp; cube->SetLines(links);
<br>&nbsp; links->Delete();
<p>&nbsp; cube->SetStrips(polys);
<br>&nbsp; polys->Delete();
<p>&nbsp; vtkPolyDataMapper *cubeMapper = vtkPolyDataMapper::New();
<br>&nbsp; cubeMapper->SetInput(cube);
<br>&nbsp; cubeMapper->SetScalarRange(0,7);
<p>&nbsp; vtkActor* cubeActor = vtkActor::New();
<br>&nbsp; cubeActor->SetMapper(cubeMapper);
<br>&nbsp; cubeActor->GetProperty()->SetColor(0,0,1);
<p>&nbsp; vtkRenderer *renderer = vtkRenderer::New();
<br>&nbsp; vtkRenderWindow *renWin = vtkRenderWindow::New();
<br>&nbsp; renWin->AddRenderer(renderer);
<p>&nbsp; vtkRenderWindowInteractor *iren = vtkRenderWindowInteractor::New();
<br>&nbsp; iren->SetRenderWindow(renWin);
<p>&nbsp; renderer->AddActor(cubeActor);
<br>&nbsp; renderer->SetBackground(1,1,1);
<p>&nbsp; renWin->SetSize(300,300);
<p>&nbsp; // interact with data
<br>&nbsp; renWin->Render();
<br>&nbsp; iren->Start();
<p>&nbsp; // Clean up
<p>&nbsp; cube->Delete();
<br>&nbsp; cubeMapper->Delete();
<br>&nbsp; cubeActor->Delete();
<br>&nbsp; renderer->Delete();
<br>&nbsp; renWin->Delete();
<br>&nbsp; iren->Delete();
<p>&nbsp; return 0;
<p>}
<br>&nbsp;
<br>&nbsp;
<p>Thank you for your answer.
<pre>--&nbsp;
===============================================================================
e-mail : vbaudet@bat710.univ-lyon1.fr
Batiment 710, UFR Informatique, Universite Claude Bernard Lyon 1
43 boulevard du 11 novembre 1918, 69622 Villeurbanne cedex, France</pre>
&nbsp;</blockquote>

<pre>--&nbsp;
===============================================================================
e-mail : vbaudet@bat710.univ-lyon1.fr
Batiment 710, UFR Informatique, Universite Claude Bernard Lyon 1
43 boulevard du 11 novembre 1918, 69622 Villeurbanne cedex, France</pre>
&nbsp;</html>