dox/Graphics/vtkExtractGrid.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00049 #ifndef __vtkExtractGrid_h
00050 #define __vtkExtractGrid_h
00051
00052 #include "vtkStructuredGridToStructuredGridFilter.h"
00053
00054 class VTK_GRAPHICS_EXPORT vtkExtractGrid : public vtkStructuredGridToStructuredGridFilter
00055 {
00056 public:
00057 static vtkExtractGrid *New();
00058 vtkTypeRevisionMacro(vtkExtractGrid,vtkStructuredGridToStructuredGridFilter);
00059 void PrintSelf(ostream& os, vtkIndent indent);
00060
00062
00065 vtkSetVector6Macro(VOI,int);
00066 vtkGetVectorMacro(VOI,int,6);
00068
00070
00074 vtkSetVector3Macro(SampleRate, int);
00075 vtkGetVectorMacro(SampleRate, int, 3);
00077
00079
00085 vtkSetMacro(IncludeBoundary,int);
00086 vtkGetMacro(IncludeBoundary,int);
00087 vtkBooleanMacro(IncludeBoundary,int);
00089
00090 protected:
00091 vtkExtractGrid();
00092 ~vtkExtractGrid() {};
00093
00094 void Execute();
00095 void ExecuteInformation();
00096 void ComputeInputUpdateExtents(vtkDataObject *out);
00097
00098 int VOI[6];
00099 int SampleRate[3];
00100 int IncludeBoundary;
00101
00102 private:
00103 vtkExtractGrid(const vtkExtractGrid&);
00104 void operator=(const vtkExtractGrid&);
00105 };
00106
00107 #endif
00108
00109