MCPcopy Create free account
hub / github.com/Kitware/VTK / UnstructuredGridExecute

Method UnstructuredGridExecute

Filters/Geometry/vtkDataSetSurfaceFilter.cxx:1302–1313  ·  view source on GitHub ↗

======================================================================== Coordinate the delegation process.

Source from the content-addressed store, hash-verified

1300//========================================================================
1301// Coordinate the delegation process.
1302int vtkDataSetSurfaceFilter::UnstructuredGridExecute(vtkDataSet* dataSetInput, vtkPolyData* output)
1303{
1304 switch (dataSetInput->GetDataObjectType())
1305 {
1306 case VTK_UNSTRUCTURED_GRID:
1307 return this->UnstructuredGridExecute(dataSetInput, output, nullptr);
1308 case VTK_UNSTRUCTURED_GRID_BASE:
1309 return this->UnstructuredGridBaseExecute(dataSetInput, output);
1310 default:
1311 return 0;
1312 }
1313}
1314
1315//------------------------------------------------------------------------------
1316// This method may delegate to vtkGeometryFilter. The "info", if passed in,

Callers 1

RequestDataMethod · 0.95

Calls 4

GetDataObjectTypeMethod · 0.80
GetMethod · 0.45

Tested by

no test coverage detected