vtkImageViewer2_XYZ.h
Go to the documentation of this file.00001 #ifndef VTKIMAGEVIEWER2_XYZ_H_
00002 #define VTKIMAGEVIEWER2_XYZ_H_
00003
00004
00005
00006
00007
00008 #include "marTypes.h"
00009 #include "vtkImageViewer2.h"
00010
00011 class creaMaracasVisu_EXPORT vtkImageViewer2_XYZ{
00012 public:
00013 vtkImageViewer2_XYZ();
00014 ~vtkImageViewer2_XYZ();
00015
00016 void SetExtentDimension(int x1,int x2, int y1,int y2, int z1,int z2);
00017 void SetXSlice(int slice);
00018 void SetYSlice(int slice);
00019 void SetZSlice(int slice);
00020 int GetXSlice();
00021 int GetYSlice();
00022 int GetZSlice();
00023 vtkImageViewer2 *GetVtkImageViewer2();
00024
00025 private:
00026 int _x1,_x2,_y1,_y2,_z1,_z2;
00027 vtkImageViewer2 *_vtkimageviewer2;
00028 protected:
00029 };
00030
00031
00032 #endif