<!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>
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>
I then tried to change the order in the link affectation at one time this
point disapear.
<br>
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 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> unsigned int i;
<p> vtkPolyData *cube=vtkPolyData::New();
<p> vtkPoints *points=vtkPoints::New();
<p> for(i=0;i<(unsigned int)(sizeof(pt)/(3*sizeof(float)));i++)points->InsertPoint(i,pt[i]);
<p> vtkCellArray *links=vtkCellArray::New();
<p> for(i=0;i<(unsigned int)(sizeof(liens)/(2*sizeof(int)));i++)links->InsertNextCell(VTK_LINE,liens[i]);
<p> vtkCellArray *polys=vtkCellArray::New();
<p> for(i=0;i<(unsigned int)(sizeof(faces)/(3*sizeof(int)));i++)links->InsertNextCell(VTK_TRIANGLE,faces[i]);
<p> cube->SetPoints(points);
<br> points->Delete();
<p> cube->SetLines(links);
<br> links->Delete();
<p> cube->SetStrips(polys);
<br> polys->Delete();
<p> vtkPolyDataMapper *cubeMapper = vtkPolyDataMapper::New();
<br> cubeMapper->SetInput(cube);
<br> cubeMapper->SetScalarRange(0,7);
<p> vtkActor* cubeActor = vtkActor::New();
<br> cubeActor->SetMapper(cubeMapper);
<br> cubeActor->GetProperty()->SetColor(0,0,1);
<p> vtkRenderer *renderer = vtkRenderer::New();
<br> vtkRenderWindow *renWin = vtkRenderWindow::New();
<br> renWin->AddRenderer(renderer);
<p> vtkRenderWindowInteractor *iren = vtkRenderWindowInteractor::New();
<br> iren->SetRenderWindow(renWin);
<p> renderer->AddActor(cubeActor);
<br> renderer->SetBackground(1,1,1);
<p> renWin->SetSize(300,300);
<p> // interact with data
<br> renWin->Render();
<br> iren->Start();
<p> // Clean up
<p> cube->Delete();
<br> cubeMapper->Delete();
<br> cubeActor->Delete();
<br> renderer->Delete();
<br> renWin->Delete();
<br> iren->Delete();
<p> return 0;
<p>}
<br>
<br>
<p>Thank you for your answer.
<pre>--
===============================================================================
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>
</blockquote>
<pre>--
===============================================================================
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>
</html>