VTK
vtkPointDataToCellData.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPointDataToCellData.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 vtkPointDataToCellData_h
41 #define vtkPointDataToCellData_h
42 
43 #include "vtkFiltersCoreModule.h" // For export macro
44 #include "vtkDataSetAlgorithm.h"
45 
47 {
48 public:
49  static vtkPointDataToCellData *New();
51  void PrintSelf(ostream& os, vtkIndent indent);
52 
54 
57  vtkSetMacro(PassPointData,int);
58  vtkGetMacro(PassPointData,int);
59  vtkBooleanMacro(PassPointData,int);
61 
62 protected:
65 
66  virtual int RequestData(vtkInformation* request,
67  vtkInformationVector** inputVector,
68  vtkInformationVector* outputVector);
69 
71 private:
72  vtkPointDataToCellData(const vtkPointDataToCellData&); // Not implemented.
73  void operator=(const vtkPointDataToCellData&); // Not implemented.
74 };
75 
76 #endif
77 
78 
Store vtkAlgorithm input/output information.
#define VTKFILTERSCORE_EXPORT
a simple class to control print indentation
Definition: vtkIndent.h:38
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
Store zero or more vtkInformation instances.
void PrintSelf(ostream &os, vtkIndent indent)
Superclass for algorithms that produce output of the same type as input.
map point data to cell data
static vtkDataSetAlgorithm * New()