Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

dox/Graphics/vtkPointDataToCellData.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkPointDataToCellData.h,v $ 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00040 #ifndef __vtkPointDataToCellData_h 00041 #define __vtkPointDataToCellData_h 00042 00043 #include "vtkDataSetToDataSetFilter.h" 00044 00045 class VTK_GRAPHICS_EXPORT vtkPointDataToCellData : public vtkDataSetToDataSetFilter 00046 { 00047 public: 00048 static vtkPointDataToCellData *New(); 00049 vtkTypeRevisionMacro(vtkPointDataToCellData,vtkDataSetToDataSetFilter); 00050 void PrintSelf(ostream& os, vtkIndent indent); 00051 00053 00056 vtkSetMacro(PassPointData,int); 00057 vtkGetMacro(PassPointData,int); 00058 vtkBooleanMacro(PassPointData,int); 00060 00061 protected: 00062 vtkPointDataToCellData(); 00063 ~vtkPointDataToCellData() {}; 00064 00065 void Execute(); 00066 00067 int PassPointData; 00068 private: 00069 vtkPointDataToCellData(const vtkPointDataToCellData&); // Not implemented. 00070 void operator=(const vtkPointDataToCellData&); // Not implemented. 00071 }; 00072 00073 #endif 00074 00075