+ ParaView 5.8 backward compatibility
return 0;
}
+#if VTK_VERSION_NUMBER >= VTK_VERSION_CHECK(9,0,0)
if (delegateToVtk)
{
return this->vtkGeometryFilter::DataSetExecute(input, output, &exc);
}
else // !delegateToVtk
+#endif
{
if (input->GetDataObjectType() == VTK_UNSTRUCTURED_GRID){
return this->UnstructuredGridExecute(input, output, outInfo);
- }else
+ }
+ else {
return Superclass::RequestData(request,inputVector,outputVector);
+ }
}
}
#endif
class vtkUnstructuredGrid;
-struct vtkExcludedFaces;
/*! \brief This class used same as vtkGeometryFilter. See documentation on VTK for more information.
*/
bool triangulate = false);
// Delegate VTKViewer_GeometryFilter::UnstructuredGridExecute to vtkGeometryFilter::UnstructuredGridExecute
- bool delegateToVtk = true;
+ bool delegateToVtk = false;
private:
TVectorId myVTK2ObjIds;