MCPcopy Create free account
hub / github.com/Kitware/VTK / FindVolume

Method FindVolume

Rendering/Volume/vtkMultiVolume.cxx:77–86  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75}
76
77vtkVolume* 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
88double* vtkMultiVolume::GetBounds()
89{

Callers 3

SetVolumeMethod · 0.95
GetVolumeMethod · 0.95
GetPropertyMethod · 0.95

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected