------------------------------------------------------------------------------
| 259 | |
| 260 | //------------------------------------------------------------------------------ |
| 261 | void vtkAnimationScene::SetAnimationTime(double currenttime) |
| 262 | { |
| 263 | if (this->InPlay) |
| 264 | { |
| 265 | vtkErrorMacro("SetAnimationTime cannot be called while playing"); |
| 266 | return; |
| 267 | } |
| 268 | this->Initialize(); |
| 269 | this->Tick(currenttime, 0.0, currenttime); |
| 270 | if (this->CueState == vtkAnimationCue::INACTIVE) |
| 271 | { |
| 272 | this->Finalize(); |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | //------------------------------------------------------------------------------ |
| 277 | void vtkAnimationScene::PrintSelf(ostream& os, vtkIndent indent) |
nothing calls this directly
no test coverage detected