00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkFillHolesFilter.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 __vtkFillHolesFilter_h 00042 #define __vtkFillHolesFilter_h 00043 00044 #include "vtkPolyDataAlgorithm.h" 00045 00046 class vtkAbstractTransform; 00047 00048 class VTK_GRAPHICS_EXPORT vtkFillHolesFilter : public vtkPolyDataAlgorithm 00049 { 00050 public: 00052 00053 static vtkFillHolesFilter *New(); 00054 vtkTypeMacro(vtkFillHolesFilter,vtkPolyDataAlgorithm); 00055 void PrintSelf(ostream& os, vtkIndent indent); 00057 00059 00063 vtkSetClampMacro(HoleSize, double, 0.0, VTK_LARGE_FLOAT); 00064 vtkGetMacro(HoleSize, double); 00066 00067 protected: 00068 vtkFillHolesFilter(); 00069 ~vtkFillHolesFilter(); 00070 00071 int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *); 00072 00073 double HoleSize; 00074 00075 private: 00076 vtkFillHolesFilter(const vtkFillHolesFilter&); // Not implemented. 00077 void operator=(const vtkFillHolesFilter&); // Not implemented. 00078 }; 00079 00080 #endif