vtkStructuredGridGeometryFilter.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00062 #ifndef __vtkStructuredGridGeometryFilter_h
00063 #define __vtkStructuredGridGeometryFilter_h
00064
00065 #include "vtkStructuredGridToPolyDataFilter.h"
00066
00067 class VTK_GRAPHICS_EXPORT vtkStructuredGridGeometryFilter : public vtkStructuredGridToPolyDataFilter
00068 {
00069 public:
00070 static vtkStructuredGridGeometryFilter *New();
00071 vtkTypeRevisionMacro(vtkStructuredGridGeometryFilter,vtkStructuredGridToPolyDataFilter);
00072 void PrintSelf(ostream& os, vtkIndent indent);
00073
00075
00077 vtkGetVectorMacro(Extent,int,6);
00079
00081 void SetExtent(int iMin, int iMax, int jMin, int jMax, int kMin, int kMax);
00082
00084 void SetExtent(int extent[6]);
00085
00086 protected:
00087 vtkStructuredGridGeometryFilter();
00088 ~vtkStructuredGridGeometryFilter() {}
00089
00090 void Execute();
00091 void ComputeInputUpdateExtents( vtkDataObject *output );
00092 int Extent[6];
00093 private:
00094 vtkStructuredGridGeometryFilter(const vtkStructuredGridGeometryFilter&);
00095 void operator=(const vtkStructuredGridGeometryFilter&);
00096 };
00097
00098 #endif
00099
00100