------------------------------------------------------------------------------
| 110 | |
| 111 | //------------------------------------------------------------------------------ |
| 112 | void vtkAnimationScene::FinalizeChildren() |
| 113 | { |
| 114 | vtkCollectionIterator* it = this->AnimationCuesIterator; |
| 115 | for (it->InitTraversal(); !it->IsDoneWithTraversal(); it->GoToNextItem()) |
| 116 | { |
| 117 | vtkAnimationCue* cue = vtkAnimationCue::SafeDownCast(it->GetCurrentObject()); |
| 118 | if (cue) |
| 119 | { |
| 120 | cue->Finalize(); |
| 121 | } |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | //------------------------------------------------------------------------------ |
| 126 | void vtkAnimationScene::Play() |
no test coverage detected