vtkPVRampKeyFrame.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkPVRampKeyFrame.h
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
21 #ifndef vtkPVRampKeyFrame_h
22 #define vtkPVRampKeyFrame_h
23 
24 #include "vtkPVKeyFrame.h"
25 
27 {
28 public:
29  static vtkPVRampKeyFrame* New();
31  void PrintSelf(ostream& os, vtkIndent indent) override;
32 
38  void UpdateValue(double currenttime, vtkPVAnimationCue* cue, vtkPVKeyFrame* next) override;
39 
40 protected:
42  ~vtkPVRampKeyFrame() override;
43 
44 private:
45  vtkPVRampKeyFrame(const vtkPVRampKeyFrame&) = delete;
46  void operator=(const vtkPVRampKeyFrame&) = delete;
47 };
48 
49 #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:36