X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2Fwidgets%2FvtkBaseData.h;h=4047fc9636920d00efcac3ef5985def86e91977a;hb=b613b5c774c04bcd993e3c249b43e2c43771847d;hp=7d72298b28a2a923ac07ae275d05d95c0884b6c9;hpb=f369752f86b8a540df6638ba87945e83c9498b4b;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkBaseData.h b/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkBaseData.h index 7d72298..4047fc9 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkBaseData.h +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkBaseData.h @@ -35,34 +35,42 @@ class creaMaracasVisu_EXPORT vtkBaseData { public: vtkBaseData(); - virtual ~vtkBaseData(); + virtual ~vtkBaseData(); vtkImageData* GetImageData(); marImageData* GetMarImageData(); - void SetMarImageData(marImageData *marimagedata); + void SetMarImageData(marImageData *marimagedata); virtual void Configure(); double GetZ(); - void SetZ(double z); - + void SetZ(double z); int GetT(); - void SetT(double t); - - void SetColorWindow(double colorWindow); - void SetColorLevel(double colorLevel); + void SetT(double t); + void SetColorWindow(double colorWindow); + void SetColorLevel(double colorLevel); double GetColorWindow(); double GetColorLevel(); - void AddObserver(int eventNumber, vtkCommand *observer); - + void AddObserver(int eventNumber, vtkCommand *observer); + bool GetInterpolate(); + void SetInterpolate(bool value); + bool GetFixAxis2D(); + void SetFixAxis2D(bool value); + double GetOpacityAxis(); + void SetOpacityAxis(double value); + double GetCameraParallelScale(); + void SetCameraParallelScale(double value); + protected: marImageData *_marImageData; double _z; int _t; - double _colorWindow; double _colorLevel; - + bool _interpolate; + bool _fixAxis2D; + double _opacityAxis; vtkObject* _observable; - + double _cameraparallelScale; private: + }; #endif /*VTKBASEDATA_H_*/