------------------------------------------------------------------------------
| 167 | |
| 168 | //------------------------------------------------------------------------------ |
| 169 | vtkDataSet* vtkImageMapper3D::GetDataSetInput() |
| 170 | { |
| 171 | if (this->GetNumberOfInputConnections(0) < 1) |
| 172 | { |
| 173 | return nullptr; |
| 174 | } |
| 175 | return vtkDataSet::SafeDownCast(this->GetInputDataObject(0, 0)); |
| 176 | } |
| 177 | |
| 178 | //------------------------------------------------------------------------------ |
| 179 | int vtkImageMapper3D::FillInputPortInformation(int vtkNotUsed(port), vtkInformation* info) |
no test coverage detected