1 #ifndef VTKIMAGEVIEWER2_XYZ_H_
2 #define VTKIMAGEVIEWER2_XYZ_H_
5 //------------------------------------------------------------------
6 //------------------------------------------------------------------
7 //------------------------------------------------------------------
10 class creaMaracasVisu_EXPORT vtkImageViewer2_XYZ{
12 vtkImageViewer2_XYZ();
13 ~vtkImageViewer2_XYZ();
15 void SetExtentDimension(int x1,int x2, int y1,int y2, int z1,int z2);
16 void SetXSlice(int slice);
17 void SetYSlice(int slice);
18 void SetZSlice(int slice);
22 vtkImageViewer2 *GetVtkImageViewer2();
25 int _x1,_x2,_y1,_y2,_z1,_z2;
26 vtkImageViewer2 *_vtkimageviewer2;
31 #endif /*VTKIMAGEVIEWER2_XYZ_H_*/