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

Method InitializeChildren

Common/DataModel/vtkAnimationScene.cxx:97–109  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

95
96//------------------------------------------------------------------------------
97void 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//------------------------------------------------------------------------------
112void vtkAnimationScene::FinalizeChildren()

Callers 1

StartCueInternalMethod · 0.95

Calls 5

GetCurrentObjectMethod · 0.80
InitTraversalMethod · 0.45
IsDoneWithTraversalMethod · 0.45
GoToNextItemMethod · 0.45
InitializeMethod · 0.45

Tested by

no test coverage detected