======================================================================== Coordinate the delegation process.
| 1300 | //======================================================================== |
| 1301 | // Coordinate the delegation process. |
| 1302 | int 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, |
no test coverage detected