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

dox/Parallel/vtkPPolyDataNormals.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkPPolyDataNormals.h,v $ 00005 Language: C++ 00006 00007 Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 00008 All rights reserved. 00009 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00010 00011 This software is distributed WITHOUT ANY WARRANTY; without even 00012 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00013 PURPOSE. See the above copyright notice for more information. 00014 00015 =========================================================================*/ 00024 #ifndef __vtkPPolyDataNormals_h 00025 #define __vtkPPolyDataNormals_h 00026 00027 #include "vtkPolyDataNormals.h" 00028 00029 class VTK_PARALLEL_EXPORT vtkPPolyDataNormals : public vtkPolyDataNormals 00030 { 00031 public: 00032 vtkTypeRevisionMacro(vtkPPolyDataNormals,vtkPolyDataNormals); 00033 void PrintSelf(ostream& os, vtkIndent indent); 00034 00035 static vtkPPolyDataNormals *New(); 00036 00038 00040 vtkSetMacro(PieceInvariant, int); 00041 vtkGetMacro(PieceInvariant, int); 00042 vtkBooleanMacro(PieceInvariant, int); 00044 00045 protected: 00046 vtkPPolyDataNormals(); 00047 ~vtkPPolyDataNormals() {}; 00048 00049 // Usual data generation method 00050 virtual void Execute(); 00051 void ComputeInputUpdateExtents(vtkDataObject *output); 00052 00053 int PieceInvariant; 00054 private: 00055 vtkPPolyDataNormals(const vtkPPolyDataNormals&); // Not implemented. 00056 void operator=(const vtkPPolyDataNormals&); // Not implemented. 00057 }; 00058 00059 #endif