| 303 | } |
| 304 | |
| 305 | int vtkMultiVolume::RenderVolumetricGeometry(vtkViewport* vp) |
| 306 | { |
| 307 | this->Update(); |
| 308 | |
| 309 | if (!this->Mapper) |
| 310 | { |
| 311 | vtkErrorMacro(<< "Invalid Mapper!\n"); |
| 312 | return 0; |
| 313 | } |
| 314 | |
| 315 | if (!this->Mapper->GetDataObjectInput()) |
| 316 | { |
| 317 | return 0; |
| 318 | } |
| 319 | |
| 320 | this->Mapper->Render(static_cast<vtkRenderer*>(vp), this); |
| 321 | this->EstimatedRenderTime += this->Mapper->GetTimeToDraw(); |
| 322 | |
| 323 | return 1; |
| 324 | } |
| 325 | |
| 326 | void vtkMultiVolume::SetProperty(vtkVolumeProperty* vtkNotUsed(property)) |
| 327 | { |
nothing calls this directly
no test coverage detected