------------------------------------------------------------------------------
| 1410 | |
| 1411 | //------------------------------------------------------------------------------ |
| 1412 | vtkDataObject* vtkCookieCutter::GetLoops() |
| 1413 | { |
| 1414 | if (this->GetNumberOfInputConnections(1) < 1) |
| 1415 | { |
| 1416 | return nullptr; |
| 1417 | } |
| 1418 | |
| 1419 | return this->GetExecutive()->GetInputData(1, 0); |
| 1420 | } |
| 1421 | |
| 1422 | //------------------------------------------------------------------------------ |
| 1423 | int vtkCookieCutter::RequestData(vtkInformation* vtkNotUsed(request), |
nothing calls this directly
no test coverage detected