VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Graphics
vtkCellDataToPointData.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkCellDataToPointData.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
=========================================================================*/
40
#ifndef __vtkCellDataToPointData_h
41
#define __vtkCellDataToPointData_h
42
43
#include "
vtkDataSetAlgorithm.h
"
44
45
class
vtkDataSet
;
46
47
class
VTK_GRAPHICS_EXPORT
vtkCellDataToPointData
:
public
vtkDataSetAlgorithm
48
{
49
public
:
50
static
vtkCellDataToPointData
*
New
();
51
vtkTypeMacro(
vtkCellDataToPointData
,
vtkDataSetAlgorithm
);
52
void
PrintSelf
(ostream& os,
vtkIndent
indent);
53
55
58
vtkSetMacro(PassCellData,
int
);
59
vtkGetMacro(PassCellData,
int
);
60
vtkBooleanMacro(PassCellData,
int
);
62
63
protected
:
64
vtkCellDataToPointData
();
65
~vtkCellDataToPointData
() {};
66
67
virtual
int
RequestData
(
vtkInformation
* request,
68
vtkInformationVector
** inputVector,
69
vtkInformationVector
* outputVector);
70
71
// Special traversal algorithm for unstructured grid
72
int
RequestDataForUnstructuredGrid
73
(
vtkInformation
*,
vtkInformationVector
**,
vtkInformationVector
*);
74
75
int
PassCellData
;
76
private
:
77
vtkCellDataToPointData
(
const
vtkCellDataToPointData
&);
// Not implemented.
78
void
operator=(
const
vtkCellDataToPointData
&);
// Not implemented.
79
};
80
81
#endif
82
83
Generated on Sun Sep 9 2012 13:03:29 for VTK by
1.8.1.2