X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2Fwidgets%2FvtkBaseData.cxx;h=dfc847270e8e5f066b60dfd036eae91d10b3cf4d;hb=f9901e756bb82bd333310b47607875331616bb29;hp=e34a19e94bde117e3ddf2e0676ef98eba66f79e8;hpb=ed6f960acce2ed63b0d6b964aee7ee243d8c6446;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkBaseData.cxx b/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkBaseData.cxx index e34a19e..dfc8472 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkBaseData.cxx +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkBaseData.cxx @@ -23,18 +23,19 @@ # knowledge of the CeCILL-B license and that you accept its terms. # ------------------------------------------------------------------------ */ - #include "vtkBaseData.h" - - //------------------------------------------------------------------- vtkBaseData::vtkBaseData() { - _z = 0; - _t = 0; - _marImageData = 0; - _observable = vtkObject::New(); + _z = 0; + _t = 0; + _marImageData = 0; + _interpolate = true; + _fixAxis2D = false; + _opacityAxis = 1.0; + _observable = vtkObject::New(); + _cameraparallelScale = 100.0; } //------------------------------------------------------------------- @@ -42,8 +43,6 @@ vtkBaseData::~vtkBaseData() { } - - //------------------------------------------------------------------- void vtkBaseData::SetMarImageData(marImageData *marimagedata) { @@ -62,6 +61,7 @@ vtkImageData* vtkBaseData::GetImageData() } } + //------------------------------------------------------------------- marImageData* vtkBaseData::GetMarImageData() { @@ -198,4 +198,53 @@ void vtkBaseData::AddObserver(int eventNumber, vtkCommand *observer) //Configure(); } +//------------------------------------------------------------------- +bool vtkBaseData::GetInterpolate() +{ + return _interpolate; +} + +//------------------------------------------------------------------- +void vtkBaseData::SetInterpolate(bool value) +{ + _interpolate = value; +} + +//------------------------------------------------------------------- +bool vtkBaseData::GetFixAxis2D() +{ + return _fixAxis2D; +} + +//------------------------------------------------------------------- +void vtkBaseData::SetFixAxis2D(bool value) +{ + _fixAxis2D = value; +} + +//------------------------------------------------------------------- +double vtkBaseData::GetOpacityAxis() +{ + return _opacityAxis; +} + +//------------------------------------------------------------------- +void vtkBaseData::SetOpacityAxis(double value) +{ + _opacityAxis = value; +} + +//------------------------------------------------------------------- +double vtkBaseData::GetCameraParallelScale() +{ + return _cameraparallelScale; +} + +//------------------------------------------------------------------- +void vtkBaseData::SetCameraParallelScale(double value) +{ + _cameraparallelScale=value; +} + +