------------------------------------------------------------------------------ Specify the input data or filter.
| 35 | //------------------------------------------------------------------------------ |
| 36 | // Specify the input data or filter. |
| 37 | vtkImageData* vtkBlankStructuredGridWithImage::GetBlankingInput() |
| 38 | { |
| 39 | if (this->GetNumberOfInputConnections(1) < 1) |
| 40 | { |
| 41 | return nullptr; |
| 42 | } |
| 43 | |
| 44 | return vtkImageData::SafeDownCast(this->GetExecutive()->GetInputData(1, 0)); |
| 45 | } |
| 46 | |
| 47 | //------------------------------------------------------------------------------ |
| 48 | int vtkBlankStructuredGridWithImage::RequestData(vtkInformation* vtkNotUsed(request), |
nothing calls this directly
no test coverage detected