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

Method SetPauseShiftScale

Rendering/Core/vtkCompositePolyDataMapper.cxx:212–226  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

210
211//------------------------------------------------------------------------------
212void vtkCompositePolyDataMapper::SetPauseShiftScale(bool pauseShiftScale)
213{
214 if (pauseShiftScale == this->PauseShiftScale)
215 {
216 return;
217 }
218
219 this->Superclass::SetPauseShiftScale(pauseShiftScale);
220 auto& internals = (*this->Internals);
221 for (auto& iter : internals.BatchedDelegators)
222 {
223 auto& delegator = iter.second;
224 delegator->GetDelegate()->SetPauseShiftScale(pauseShiftScale);
225 }
226}
227
228//------------------------------------------------------------------------------
229void vtkCompositePolyDataMapper::PrintSelf(ostream& os, vtkIndent indent)

Callers 1

ShallowCopyMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected