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

Method FinalizeChildren

Common/DataModel/vtkAnimationScene.cxx:112–123  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

110
111//------------------------------------------------------------------------------
112void 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//------------------------------------------------------------------------------
126void vtkAnimationScene::Play()

Callers 1

EndCueInternalMethod · 0.95

Calls 5

GetCurrentObjectMethod · 0.80
InitTraversalMethod · 0.45
IsDoneWithTraversalMethod · 0.45
GoToNextItemMethod · 0.45
FinalizeMethod · 0.45

Tested by

no test coverage detected