------------------------------------------------------------------------------
| 26 | |
| 27 | //------------------------------------------------------------------------------ |
| 28 | void vtkVolumeNode::Build(bool prepass) |
| 29 | { |
| 30 | if (prepass) |
| 31 | { |
| 32 | vtkVolume* mine = vtkVolume::SafeDownCast(this->GetRenderable()); |
| 33 | if (!mine) |
| 34 | { |
| 35 | return; |
| 36 | } |
| 37 | if (!mine->GetMapper()) |
| 38 | { |
| 39 | return; |
| 40 | } |
| 41 | |
| 42 | this->PrepareNodes(); |
| 43 | this->AddMissingNode(mine->GetMapper()); |
| 44 | this->RemoveUnusedNodes(); |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | //------------------------------------------------------------------------------ |
| 49 | void vtkVolumeNode::PrintSelf(ostream& os, vtkIndent indent) |
nothing calls this directly
no test coverage detected