58 #ifndef __vtkGeometryFilter_h
59 #define __vtkGeometryFilter_h
61 #include "vtkFiltersGeometryModule.h"
62 #include "vtkPolyDataAlgorithm.h"
64 class vtkIncrementalPointLocator;
71 void PrintSelf(ostream& os, vtkIndent indent);
75 vtkSetMacro(PointClipping,
int);
76 vtkGetMacro(PointClipping,
int);
77 vtkBooleanMacro(PointClipping,
int);
82 vtkSetMacro(CellClipping,
int);
83 vtkGetMacro(CellClipping,
int);
84 vtkBooleanMacro(CellClipping,
int);
89 vtkSetMacro(ExtentClipping,
int);
90 vtkGetMacro(ExtentClipping,
int);
91 vtkBooleanMacro(ExtentClipping,
int);
96 vtkSetClampMacro(PointMinimum,vtkIdType,0,VTK_ID_MAX);
97 vtkGetMacro(PointMinimum,vtkIdType);
102 vtkSetClampMacro(PointMaximum,vtkIdType,0,VTK_ID_MAX);
103 vtkGetMacro(PointMaximum,vtkIdType);
108 vtkSetClampMacro(CellMinimum,vtkIdType,0,VTK_ID_MAX);
109 vtkGetMacro(CellMinimum,vtkIdType);
114 vtkSetClampMacro(CellMaximum,vtkIdType,0,VTK_ID_MAX);
115 vtkGetMacro(CellMaximum,vtkIdType);
121 void SetExtent(
double xMin,
double xMax,
double yMin,
double yMax,
122 double zMin,
double zMax);
128 void SetExtent(
double extent[6]);
136 vtkSetMacro(Merging,
int);
137 vtkGetMacro(Merging,
int);
138 vtkBooleanMacro(Merging,
int);
144 void SetLocator(vtkIncrementalPointLocator *locator);
145 vtkGetObjectMacro(Locator,vtkIncrementalPointLocator);
149 void CreateDefaultLocator();
152 unsigned long GetMTime();
158 virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
159 virtual int FillInputPortInformation(
int port, vtkInformation *info);
162 void PolyDataExecute(vtkDataSet *, vtkPolyData *, vtkInformation *);
163 void UnstructuredGridExecute(vtkDataSet *, vtkPolyData *, vtkInformation *);
164 void StructuredGridExecute(vtkDataSet *, vtkPolyData *, vtkInformation *);
165 int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
extract geometry from data (or convert data to polygonal type)
vtkIncrementalPointLocator * Locator