VTK
dox/Filters/Parallel/vtkPProjectSphereFilter.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkPProjectSphereFilter.h
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 =========================================================================*/
00022 #ifndef __vtkPProjectSphereFilter_h
00023 #define __vtkPProjectSphereFilter_h
00024 
00025 #include "vtkFiltersParallelModule.h" // For export macro
00026 #include "vtkProjectSphereFilter.h"
00027 
00028 class VTKFILTERSPARALLEL_EXPORT vtkPProjectSphereFilter :
00029   public vtkProjectSphereFilter
00030 {
00031 public:
00032   vtkTypeMacro(vtkPProjectSphereFilter, vtkProjectSphereFilter);
00033   virtual void PrintSelf(ostream &os, vtkIndent indent);
00034 
00035   static vtkPProjectSphereFilter *New();
00036 
00037 protected:
00038   vtkPProjectSphereFilter();
00039   ~vtkPProjectSphereFilter();
00040 
00044   virtual void ComputePointsClosestToCenterLine(double, vtkIdList*);
00045 
00048   virtual double GetZTranslation(vtkPointSet* input);
00049 
00050 private:
00051   vtkPProjectSphereFilter(const vtkPProjectSphereFilter &); // Not implemented
00052   void operator=(const vtkPProjectSphereFilter &);    // Not implemented
00053 };
00054 
00055 #endif // __vtkPProjectSphereFilter_h