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

vtkPPolyDataNormals.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkPPolyDataNormals.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 =========================================================================*/
00031 #ifndef __vtkPPolyDataNormals_h
00032 #define __vtkPPolyDataNormals_h
00033 
00034 #include "vtkPolyDataNormals.h"
00035 
00036 class VTK_PARALLEL_EXPORT vtkPPolyDataNormals : public vtkPolyDataNormals
00037 {
00038 public:
00039   vtkTypeRevisionMacro(vtkPPolyDataNormals,vtkPolyDataNormals);
00040   void PrintSelf(ostream& os, vtkIndent indent);
00041 
00042   static vtkPPolyDataNormals *New();
00043 
00045 
00047   vtkSetMacro(PieceInvariant, int);
00048   vtkGetMacro(PieceInvariant, int);
00049   vtkBooleanMacro(PieceInvariant, int);
00051 
00052 protected:
00053   vtkPPolyDataNormals();
00054   ~vtkPPolyDataNormals() {};
00055 
00056   // Usual data generation method
00057   virtual void Execute();
00058   void ComputeInputUpdateExtents(vtkDataObject *output);
00059 
00060   int PieceInvariant;
00061 private:
00062   vtkPPolyDataNormals(const vtkPPolyDataNormals&);  // Not implemented.
00063   void operator=(const vtkPPolyDataNormals&);  // Not implemented.
00064 };
00065 
00066 #endif