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

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 =========================================================================*/
00052 #ifndef __vtkPointDataToCellData_h
00053 #define __vtkPointDataToCellData_h
00054 
00055 #include "vtkDataSetToDataSetFilter.h"
00056 
00057 class VTK_GRAPHICS_EXPORT vtkPointDataToCellData : public vtkDataSetToDataSetFilter
00058 {
00059 public:
00060   static vtkPointDataToCellData *New();
00061   vtkTypeRevisionMacro(vtkPointDataToCellData,vtkDataSetToDataSetFilter);
00062   void PrintSelf(ostream& os, vtkIndent indent);
00063 
00065 
00068   vtkSetMacro(PassPointData,int);
00069   vtkGetMacro(PassPointData,int);
00070   vtkBooleanMacro(PassPointData,int);
00072 
00073 protected:
00074   vtkPointDataToCellData();
00075   ~vtkPointDataToCellData() {};
00076 
00077   void Execute();
00078 
00079   int PassPointData;
00080 private:
00081   vtkPointDataToCellData(const vtkPointDataToCellData&);  // Not implemented.
00082   void operator=(const vtkPointDataToCellData&);  // Not implemented.
00083 };
00084 
00085 #endif
00086 
00087