| 75 | } |
| 76 | |
| 77 | vtkVolume* vtkMultiVolume::FindVolume(int port) |
| 78 | { |
| 79 | vtkVolume* vol = nullptr; |
| 80 | const auto it = this->Volumes.find(port); |
| 81 | if (it != this->Volumes.end()) |
| 82 | { |
| 83 | vol = it->second; |
| 84 | } |
| 85 | return vol; |
| 86 | } |
| 87 | |
| 88 | double* vtkMultiVolume::GetBounds() |
| 89 | { |
no test coverage detected