------------------------------------------------------------------------------
| 146 | |
| 147 | //------------------------------------------------------------------------------ |
| 148 | double* vtkMultiBlockVolumeMapper::GetBounds() |
| 149 | { |
| 150 | if (!this->GetDataObjectTreeInput()) |
| 151 | { |
| 152 | return this->Superclass::GetBounds(); |
| 153 | } |
| 154 | else |
| 155 | { |
| 156 | this->Update(); |
| 157 | this->ComputeBounds(); |
| 158 | return this->Bounds; |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | //------------------------------------------------------------------------------ |
| 163 | void vtkMultiBlockVolumeMapper::ComputeBounds() |