VTK
vtkFillHolesFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkFillHolesFilter.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
41 #ifndef __vtkFillHolesFilter_h
42 #define __vtkFillHolesFilter_h
43 
44 #include "vtkPolyDataAlgorithm.h"
45 
47 
49 {
50 public:
52 
53  static vtkFillHolesFilter *New();
55  void PrintSelf(ostream& os, vtkIndent indent);
57 
59 
63  vtkSetClampMacro(HoleSize, double, 0.0, VTK_LARGE_FLOAT);
64  vtkGetMacro(HoleSize, double);
66 
67 protected:
70 
72 
73  double HoleSize;
74 
75 private:
76  vtkFillHolesFilter(const vtkFillHolesFilter&); // Not implemented.
77  void operator=(const vtkFillHolesFilter&); // Not implemented.
78 };
79 
80 #endif