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 "vtkDataSetAlgorithm.h"
44 
46 {
47 public:
48  static vtkPointDataToCellData *New();
50  void PrintSelf(ostream& os, vtkIndent indent);
51 
53 
56  vtkSetMacro(PassPointData,int);
57  vtkGetMacro(PassPointData,int);
58  vtkBooleanMacro(PassPointData,int);
60 
61 protected:
64 
65  virtual int RequestData(vtkInformation* request,
66  vtkInformationVector** inputVector,
67  vtkInformationVector* outputVector);
68 
70 private:
71  vtkPointDataToCellData(const vtkPointDataToCellData&); // Not implemented.
72  void operator=(const vtkPointDataToCellData&); // Not implemented.
73 };
74 
75 #endif
76 
77