[vtkusers] Understanding vtkAppendFilter ; interesting results..
Fcs
ftpronk at engits.com
Thu Aug 9 08:28:48 EDT 2018
After testing:
- VTK 7.1.1 segfaults when using:
> vtkSmartPointer<vtkStructuredGrid> sgrid = createGrid(i, i+10, j,j+10, k,
> k+10);
> vtkSmartPointer<vtkUnstructuredGrid> ugrid =
> vtkSmartPointer<vtkUnstructuredGrid>::New();
> ugrid->DeepCopy(sgrid);
> filter->AddInputData(ugrid);
- VTK 7.1.1 works with:
> vtkSmartPointer<vtkStructuredGrid> sgrid = createGrid(i, i+10, j,j+10, k,
> k+10);
> filter->AddInputData(sgrid);
- VTK 8.1.1 works with both, with the correct number of cells.
So it looks more like a bug with VTK 6.3 and 7.1.1.
Do the VTK developers release patches for old VTK versions? Is it worth
filing a bug report...?
--
Sent from: http://vtk.1045678.n5.nabble.com/VTK-Users-f1224199.html
More information about the vtkusers
mailing list