------------------------------------------------------------------------------
| 196 | |
| 197 | //------------------------------------------------------------------------------ |
| 198 | vtkDataObjectTree* vtkMultiBlockVolumeMapper::GetDataObjectTreeInput() |
| 199 | { |
| 200 | if (this->GetNumberOfInputConnections(0) < 1) |
| 201 | { |
| 202 | return nullptr; |
| 203 | } |
| 204 | return vtkDataObjectTree::SafeDownCast(this->GetInputDataObject(0, 0)); |
| 205 | } |
| 206 | |
| 207 | //------------------------------------------------------------------------------ |
| 208 | void vtkMultiBlockVolumeMapper::LoadDataSet(vtkRenderer* ren, vtkVolume* vol) |
no test coverage detected