----------------------------------------------------------------------------
| 54 | |
| 55 | //---------------------------------------------------------------------------- |
| 56 | double vtkPVKeyFrame::GetKeyValue(unsigned int index) |
| 57 | { |
| 58 | if (index >= this->GetNumberOfKeyValues()) |
| 59 | { |
| 60 | return 0.0; |
| 61 | } |
| 62 | return this->Internals->KeyValues[index]; |
| 63 | } |
| 64 | |
| 65 | //---------------------------------------------------------------------------- |
| 66 | void vtkPVKeyFrame::SetNumberOfKeyValues(unsigned int num) |
no test coverage detected