------------------------------------------------------------------------------
| 210 | |
| 211 | //------------------------------------------------------------------------------ |
| 212 | void 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 | //------------------------------------------------------------------------------ |
| 229 | void vtkCompositePolyDataMapper::PrintSelf(ostream& os, vtkIndent indent) |