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