------------------------------------------------------------------------------
| 95 | |
| 96 | //------------------------------------------------------------------------------ |
| 97 | void vtkAnimationScene::InitializeChildren() |
| 98 | { |
| 99 | // run through all the cues and init them. |
| 100 | vtkCollectionIterator* it = this->AnimationCuesIterator; |
| 101 | for (it->InitTraversal(); !it->IsDoneWithTraversal(); it->GoToNextItem()) |
| 102 | { |
| 103 | vtkAnimationCue* cue = vtkAnimationCue::SafeDownCast(it->GetCurrentObject()); |
| 104 | if (cue) |
| 105 | { |
| 106 | cue->Initialize(); |
| 107 | } |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | //------------------------------------------------------------------------------ |
| 112 | void vtkAnimationScene::FinalizeChildren() |
no test coverage detected