------------------------------------------------------------------------------
| 13 | |
| 14 | //------------------------------------------------------------------------------ |
| 15 | vtkAnimationScene::vtkAnimationScene() |
| 16 | { |
| 17 | this->PlayMode = PLAYMODE_SEQUENCE; |
| 18 | this->FrameRate = 10.0; |
| 19 | this->Loop = 0; |
| 20 | this->InPlay = 0; |
| 21 | this->StopPlay = 0; |
| 22 | |
| 23 | this->AnimationCues = vtkCollection::New(); |
| 24 | this->AnimationCuesIterator = this->AnimationCues->NewIterator(); |
| 25 | this->AnimationTimer = vtkTimerLog::New(); |
| 26 | } |
| 27 | |
| 28 | //------------------------------------------------------------------------------ |
| 29 | vtkAnimationScene::~vtkAnimationScene() |
nothing calls this directly
no test coverage detected