Hello! <br>
<br>
I am importing a Vrml Model and i want to append to the same polydata
the polydata information of all the actors, but I have a problem when I
do the<br>
appendSet->Update(); the following message appears Unhandled
exception at 0x004771b7 in Visualization_Tool.exe: 0xC00000FD: Stack
overflow.<br>
<br>
I think i'm doing everything right, so i'll put the relevant part of the code hoping that someone will have a solution.<br>
<br>
Thanks <br>
Ricardo Seco<br>
University of Aveiro<br>
<br>
...<br>
if (NumberOfActors >0)<br>
{<br>
// Obtenção dos actores da cena<br>
<br>
ActColection = ren1->GetActors();<br>
<br>
tmpData = (vtkPolyData *)
((vtkActor*)ActColection->GetLastActor())->GetMapper()->GetInput();<br>
<br>
appendSet->AddInput(tmpData);<br>
<br>
ActColection->InitTraversal();<br>
<br>
// Para cada iteração ...<br>
for (int i=0;i<NumberOfActors;i++)<br>
{<br>
auxiliar++;<br>
<br>
// Obter esse actor<br>
<br>
Act = ActColection->GetNextActor();<br>
<br>
if (Act!=NULL)<br>
{<br>
if (Act->GetMapper()!=NULL)<br>
{<br>
printf("------------------------------------------------------------------
\n"); <br>
<br>
// Este código consoante o indice
do actor<br>
// que "engloba" o modelo torna-o
ou não<br>
// pickable. No caso de só
existir um actor<br>
// este é sempre pickable<br>
<br>
if ((auxiliar==1) &&
(NumberOfActors>1))<br>
{<br>
Act->PickableOff();<br>
Act->GetProperty()->SetOpacity(0.5);<br>
}<br>
<br>
// Vai buscar ao Mapper os dados
poligonais<br>
tmpData = (vtkPolyData* )
Act->GetMapper()->GetInput();<br>
<br>
appendSet->AddInput(appendSet->GetOutput());<br>
<br>
appendSet->AddInput(tmpData);<br>
<br>
appendSet->Update(); //->
Stack OverFlow<br>
<br>
polyData = (vtkPolyData*
)appendSet->GetOutput();<br>
...<br>
<br>