vtkStructuredGridGeometryFilter.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00053 #ifndef __vtkStructuredGridGeometryFilter_h
00054 #define __vtkStructuredGridGeometryFilter_h
00055
00056 #include "vtkStructuredGridToPolyDataFilter.h"
00057
00058 class VTK_GRAPHICS_EXPORT vtkStructuredGridGeometryFilter : public vtkStructuredGridToPolyDataFilter
00059 {
00060 public:
00061 static vtkStructuredGridGeometryFilter *New();
00062 vtkTypeRevisionMacro(vtkStructuredGridGeometryFilter,vtkStructuredGridToPolyDataFilter);
00063 void PrintSelf(ostream& os, vtkIndent indent);
00064
00066
00068 vtkGetVectorMacro(Extent,int,6);
00070
00072 void SetExtent(int iMin, int iMax, int jMin, int jMax, int kMin, int kMax);
00073
00075 void SetExtent(int extent[6]);
00076
00077 protected:
00078 vtkStructuredGridGeometryFilter();
00079 ~vtkStructuredGridGeometryFilter() {}
00080
00081 void Execute();
00082 void ComputeInputUpdateExtents( vtkDataObject *output );
00083 int Extent[6];
00084 private:
00085 vtkStructuredGridGeometryFilter(const vtkStructuredGridGeometryFilter&);
00086 void operator=(const vtkStructuredGridGeometryFilter&);
00087 };
00088
00089 #endif
00090
00091