VTK  9.2.6
vtkAdaptiveTemporalInterpolator.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkTemporalInterpolator.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm 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 =========================================================================*/
26 #ifndef vtkAdaptiveTemporalInterpolator_h
27 #define vtkAdaptiveTemporalInterpolator_h
28 
29 #include "vtkFiltersParallelModule.h" // For export macro
31 
32 class vtkDataSet;
33 class vtkPointSet;
34 
35 class VTKFILTERSPARALLEL_EXPORT vtkAdaptiveTemporalInterpolator : public vtkTemporalInterpolator
36 {
37 public:
40  void PrintSelf(ostream& os, vtkIndent indent) override;
41 
42 protected:
45 
51  vtkDataSet* InterpolateDataSet(vtkDataSet* in1, vtkDataSet* in2, double ratio) override;
52 
70  vtkPointSet* ResampleDataObject(vtkPointSet*& a, vtkPointSet*& b, int source);
71 
72 private:
74  void operator=(const vtkAdaptiveTemporalInterpolator&) = delete;
75 
76  class ResamplingHelperImpl;
77  ResamplingHelperImpl* ResampleImpl;
78 };
79 
80 #endif
abstract class to specify dataset behavior
Definition: vtkDataSet.h:62
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkTemporalInterpolator * New()
concrete class for storing a set of points
Definition: vtkPointSet.h:69
interpolate datasets between time steps to produce a new dataset
interpolate datasets between time steps to produce a new dataset
virtual vtkDataSet * InterpolateDataSet(vtkDataSet *in1, vtkDataSet *in2, double ratio)
Root level interpolation for a concrete dataset object.
a simple class to control print indentation
Definition: vtkIndent.h:39
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)