vtkPVRampKeyFrame.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
2 // SPDX-License-Identifier: BSD-3-Clause
9 #ifndef vtkPVRampKeyFrame_h
10 #define vtkPVRampKeyFrame_h
11 
12 #include "vtkPVKeyFrame.h"
13 
15 {
16 public:
17  static vtkPVRampKeyFrame* New();
19  void PrintSelf(ostream& os, vtkIndent indent) override;
20 
26  void UpdateValue(double currenttime, vtkPVAnimationCue* cue, vtkPVKeyFrame* next) override;
27 
28 protected:
30  ~vtkPVRampKeyFrame() override;
31 
32 private:
33  vtkPVRampKeyFrame(const vtkPVRampKeyFrame&) = delete;
34  void operator=(const vtkPVRampKeyFrame&) = delete;
35 };
36 
37 #endif
void PrintSelf(ostream &os, vtkIndent indent) override
proxy for vtkAnimationCue.
static vtkPVKeyFrame * New()
Interplates lineraly between consecutive key frames.
virtual void UpdateValue(double currenttime, vtkPVAnimationCue *cue, vtkPVKeyFrame *next)
This method will do the actual interpolation.
#define VTKREMOTINGANIMATION_EXPORT
Base class for key frames.
Definition: vtkPVKeyFrame.h:24