VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Graphics
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
40
class
vtkDataSetCollection
;
41
42
class
VTK_GRAPHICS_EXPORT
vtkInterpolateDataSetAttributes
:
public
vtkDataSetAlgorithm
43
{
44
public
:
45
static
vtkInterpolateDataSetAttributes
*
New
();
46
vtkTypeMacro(
vtkInterpolateDataSetAttributes
,
vtkDataSetAlgorithm
);
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
:
59
vtkInterpolateDataSetAttributes
();
60
~
vtkInterpolateDataSetAttributes
();
61
62
virtual
void
ReportReferences
(
vtkGarbageCollector
*);
63
64
int
RequestData
(
vtkInformation
*,
vtkInformationVector
**,
vtkInformationVector
*);
65
int
FillInputPortInformation
(
int
port
,
vtkInformation
*
info
);
66
67
vtkDataSetCollection
*
InputList
;
// list of data sets to interpolate
68
double
T
;
// interpolation parameter
69
70
private
:
71
vtkInterpolateDataSetAttributes
(
const
vtkInterpolateDataSetAttributes
&);
// Not implemented.
72
void
operator=(
const
vtkInterpolateDataSetAttributes
&);
// Not implemented.
73
};
74
75
#endif
76
77
Generated on Fri Aug 2 2013 12:19:49 for VTK by
1.8.4