vtkImagePermute.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00040 #ifndef __vtkImagePermute_h
00041 #define __vtkImagePermute_h
00042
00043
00044 #include "vtkImageReslice.h"
00045
00046 class VTK_IMAGING_EXPORT vtkImagePermute : public vtkImageReslice
00047 {
00048 public:
00049 static vtkImagePermute *New();
00050 vtkTypeRevisionMacro(vtkImagePermute,vtkImageReslice);
00051
00052 void PrintSelf(ostream& os, vtkIndent indent);
00053
00055
00056 void SetFilteredAxes(int x, int y, int z);
00057 void SetFilteredAxes(const int xyz[3]) {
00058 this->SetFilteredAxes(xyz[0], xyz[1], xyz[2]); };
00059 vtkGetVector3Macro(FilteredAxes, int);
00061
00062 protected:
00063 vtkImagePermute();
00064 ~vtkImagePermute() {};
00065
00066 int FilteredAxes[3];
00067
00068 private:
00069 vtkImagePermute(const vtkImagePermute&);
00070 void operator=(const vtkImagePermute&);
00071 };
00072
00073 #endif
00074
00075
00076