------------------------------------------------------------------------------
| 90 | |
| 91 | //------------------------------------------------------------------------------ |
| 92 | vtkImageData* vtkOpenGLSurfaceProbeVolumeMapper::GetSource() |
| 93 | { |
| 94 | if (this->GetNumberOfInputConnections(1) < 1) |
| 95 | { |
| 96 | return nullptr; |
| 97 | } |
| 98 | |
| 99 | return vtkImageData::SafeDownCast(this->GetExecutive()->GetInputData(1, 0)); |
| 100 | } |
| 101 | |
| 102 | //------------------------------------------------------------------------------ |
| 103 | void vtkOpenGLSurfaceProbeVolumeMapper::SetSourceConnection(vtkAlgorithmOutput* algOutput) |
no test coverage detected