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

Method SetInputConnection

Rendering/Volume/vtkGPUVolumeRayCastMapper.cxx:801–810  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

799}
800
801void vtkGPUVolumeRayCastMapper::SetInputConnection(int port, vtkAlgorithmOutput* input)
802{
803 Superclass::SetInputConnection(port, input);
804 const auto it = std::find(this->Ports.begin(), this->Ports.end(), port);
805 if (it == this->Ports.cend())
806 {
807 this->Ports.push_back(port);
808 }
809 this->Modified();
810}
811
812void vtkGPUVolumeRayCastMapper::RemoveInputConnection(int port, vtkAlgorithmOutput* input)
813{

Callers

nothing calls this directly

Calls 7

SetInputConnectionFunction · 0.50
findFunction · 0.50
beginMethod · 0.45
endMethod · 0.45
cendMethod · 0.45
push_backMethod · 0.45
ModifiedMethod · 0.45

Tested by

no test coverage detected