VTK
vtkExtractPolyDataGeometry.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkExtractPolyDataGeometry.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 =========================================================================*/
40 #ifndef __vtkExtractPolyDataGeometry_h
41 #define __vtkExtractPolyDataGeometry_h
42 
43 #include "vtkFiltersExtractionModule.h" // For export macro
44 #include "vtkPolyDataAlgorithm.h"
45 
47 
49 {
50 public:
52  void PrintSelf(ostream& os, vtkIndent indent);
53 
56 
58  unsigned long GetMTime();
59 
61 
62  virtual void SetImplicitFunction(vtkImplicitFunction*);
63  vtkGetObjectMacro(ImplicitFunction,vtkImplicitFunction);
65 
67 
70  vtkSetMacro(ExtractInside,int);
71  vtkGetMacro(ExtractInside,int);
72  vtkBooleanMacro(ExtractInside,int);
74 
76 
78  vtkSetMacro(ExtractBoundaryCells,int);
79  vtkGetMacro(ExtractBoundaryCells,int);
80  vtkBooleanMacro(ExtractBoundaryCells,int);
82 
83 protected:
86 
87  // Usual data generation method
89 
93 private:
94  vtkExtractPolyDataGeometry(const vtkExtractPolyDataGeometry&); // Not implemented.
95  void operator=(const vtkExtractPolyDataGeometry&); // Not implemented.
96 };
97 
98 #endif
abstract interface for implicit functions
GLclampf f
Definition: vtkgl.h:14181
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
#define vtkGetMacro(name, type)
Definition: vtkSetGet.h:83
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:619
static vtkPolyDataAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent)
Superclass for algorithms that produce only polydata as output.
virtual unsigned long GetMTime()
a simple class to control print indentation
Definition: vtkIndent.h:38
#define VTKFILTERSEXTRACTION_EXPORT
#define vtkGetObjectMacro(name, type)
Definition: vtkSetGet.h:222
vtkImplicitFunction * ImplicitFunction
Store zero or more vtkInformation instances.
#define vtkBooleanMacro(name, type)
Definition: vtkSetGet.h:234
extract vtkPolyData cells that lies either entirely inside or outside of a specified implicit functio...
#define vtkSetMacro(name, type)
Definition: vtkSetGet.h:69