VTK
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 "vtkFiltersCoreModule.h" // For export macro
44 #include "vtkDataSetAlgorithm.h"
45 
46 class vtkDataSet;
47 
49 {
50 public:
53  void PrintSelf(ostream& os, vtkIndent indent);
54 
56 
59  vtkSetMacro(PassCellData,int);
60  vtkGetMacro(PassCellData,int);
61  vtkBooleanMacro(PassCellData,int);
63 
64 protected:
67 
68  virtual int RequestData(vtkInformation* request,
69  vtkInformationVector** inputVector,
70  vtkInformationVector* outputVector);
71 
72  // Special traversal algorithm for unstructured grid
75 
77 
78  // Same as above, but with special handling for masked cells in input.
80  vtkDataSet *output);
81 
83 private:
84  vtkCellDataToPointData(const vtkCellDataToPointData&); // Not implemented.
85  void operator=(const vtkCellDataToPointData&); // Not implemented.
86 };
87 
88 #endif
89 
90 
vtkCellDataToPointData::PassCellData
int PassCellData
Definition: vtkCellDataToPointData.h:82
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkStructuredGrid
topologically regular array of data
Definition: vtkStructuredGrid.h:63
vtkCellDataToPointData::RequestData
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
vtkgl::input
GLenum GLenum GLenum input
Definition: vtkgl.h:15941
vtkCellDataToPointData::vtkCellDataToPointData
vtkCellDataToPointData()
vtkFiltersCoreModule.h
vtkCellDataToPointData::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
vtkDataSetAlgorithm
Superclass for algorithms that produce output of the same type as input.
Definition: vtkDataSetAlgorithm.h:51
vtkCellDataToPointData::New
static vtkCellDataToPointData * New()
VTKFILTERSCORE_EXPORT
#define VTKFILTERSCORE_EXPORT
Definition: vtkFiltersCoreModule.h:15
vtkCellDataToPointData::interpolatePointData
void interpolatePointData(vtkDataSet *input, vtkDataSet *output)
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkCellDataToPointData
map cell data to point data
Definition: vtkCellDataToPointData.h:49
vtkGetMacro
#define vtkGetMacro(name, type)
Definition: vtkSetGet.h:93
vtkCellDataToPointData::RequestDataForUnstructuredGrid
int RequestDataForUnstructuredGrid(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
vtkDataSet
abstract class to specify dataset behavior
Definition: vtkDataSet.h:62
vtkBooleanMacro
vtkBooleanMacro(IgnoreDriverBugs, bool)
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkSetMacro
vtkSetMacro(IgnoreDriverBugs, bool)
vtkCellDataToPointData::interpolatePointDataWithMask
void interpolatePointDataWithMask(vtkStructuredGrid *input, vtkDataSet *output)
vtkCellDataToPointData::~vtkCellDataToPointData
~vtkCellDataToPointData()
Definition: vtkCellDataToPointData.h:66
vtkDataSetAlgorithm.h