VTK
vtkExtractGeometry.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkExtractGeometry.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 =========================================================================*/
43 #ifndef __vtkExtractGeometry_h
44 #define __vtkExtractGeometry_h
45 
47 
49 
51 {
52 public:
54  void PrintSelf(ostream& os, vtkIndent indent);
55 
57  static vtkExtractGeometry *New();
58 
60  unsigned long GetMTime();
61 
63 
64  virtual void SetImplicitFunction(vtkImplicitFunction*);
65  vtkGetObjectMacro(ImplicitFunction,vtkImplicitFunction);
67 
69 
72  vtkSetMacro(ExtractInside,int);
73  vtkGetMacro(ExtractInside,int);
74  vtkBooleanMacro(ExtractInside,int);
76 
78 
80  vtkSetMacro(ExtractBoundaryCells,int);
81  vtkGetMacro(ExtractBoundaryCells,int);
82  vtkBooleanMacro(ExtractBoundaryCells,int);
83  vtkSetMacro(ExtractOnlyBoundaryCells,int);
84  vtkGetMacro(ExtractOnlyBoundaryCells,int);
85  vtkBooleanMacro(ExtractOnlyBoundaryCells,int);
87 
88 protected:
91 
92  // Usual data generation method
94 
96 
101 
102 private:
103  vtkExtractGeometry(const vtkExtractGeometry&); // Not implemented.
104  void operator=(const vtkExtractGeometry&); // Not implemented.
105 };
106 
107 #endif
108 
109