VTK
dox/Filters/General/vtkQuantizePolyDataPoints.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkQuantizePolyDataPoints.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 =========================================================================*/
00041 #ifndef __vtkQuantizePolyDataPoints_h
00042 #define __vtkQuantizePolyDataPoints_h
00043 
00044 #include "vtkFiltersGeneralModule.h" // For export macro
00045 #include "vtkCleanPolyData.h"
00046 
00047 class VTKFILTERSGENERAL_EXPORT vtkQuantizePolyDataPoints : public vtkCleanPolyData
00048 {
00049 public:
00050   static vtkQuantizePolyDataPoints *New();
00051   vtkTypeMacro(vtkQuantizePolyDataPoints,vtkCleanPolyData);
00052   void PrintSelf(ostream& os, vtkIndent indent);
00053 
00055 
00056   vtkSetClampMacro(QFactor,double,1E-5,VTK_FLOAT_MAX);
00057   vtkGetMacro(QFactor,double);
00059 
00061   virtual void OperateOnPoint(double in[3], double out[3]);
00062 
00064   virtual void OperateOnBounds(double in[6], double out[6]);
00065 
00066 protected:
00067   vtkQuantizePolyDataPoints();
00068   ~vtkQuantizePolyDataPoints() {};
00069 
00070   double QFactor;
00071 private:
00072   vtkQuantizePolyDataPoints(const vtkQuantizePolyDataPoints&);  // Not implemented.
00073   void operator=(const vtkQuantizePolyDataPoints&);  // Not implemented.
00074 };
00075 
00076 #endif
00077 
00078