Main Page | Directories | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

vtkImagePermute.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkImagePermute.h,v $
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
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&);  // Not implemented.
00070   void operator=(const vtkImagePermute&);  // Not implemented.
00071 };
00072 
00073 #endif
00074 
00075 
00076