VTK
vtkInterpolateDataSetAttributes.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkInterpolateDataSetAttributes.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 =========================================================================*/
35 #ifndef __vtkInterpolateDataSetAttributes_h
36 #define __vtkInterpolateDataSetAttributes_h
37 
38 #include "vtkDataSetAlgorithm.h"
39 
41 
43 {
44 public:
47  void PrintSelf(ostream& os, vtkIndent indent);
48 
50  vtkDataSetCollection *GetInputList();
51 
53 
54  vtkSetClampMacro(T,double,0.0,VTK_DOUBLE_MAX);
55  vtkGetMacro(T,double);
57 
58 protected:
61 
63 
66 
67  vtkDataSetCollection *InputList; // list of data sets to interpolate
68  double T; // interpolation parameter
69 
70 private:
72  void operator=(const vtkInterpolateDataSetAttributes&); // Not implemented.
73 };
74 
75 #endif
76 
77