]> Creatis software - creaMaracasVisu.git/commitdiff
Clean code
authoreduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Mon, 3 Feb 2025 15:06:56 +0000 (16:06 +0100)
committereduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Mon, 3 Feb 2025 15:06:56 +0000 (16:06 +0100)
lib/maracasVisuLib/src/interface/wxWindows/widgets/wxMaracas_ViewerWidget.cxx
lib/maracasVisuLib/src/interface/wxWindows/widgets/wxVtkMPR3DView.cxx

index 4448880aaa3a480cf0e633b4c440ebe4eea34017..bf6535555ef46d6d1ce48a61c74ba9b0c7db2045 100644 (file)
                        controlPanelClippingVol3D       = mwxvtkclipping3Dview->CreateVolControlPanel(notebook);
                        notebook->AddPage(controlPanelClippingVol3D, _T("Volume") );
 
-                       panelClipping3D->SplitHorizontally(  window3D ,notebook , 10  );
+                       panelClipping3D->SplitHorizontally(  window3D ,notebook ,  -140 );
                        panelClipping3D->SetMinimumPaneSize( 20 );
                        //RaC Nov2012 Correctly resize internal panels with the window resize event
                        panelClipping3D->SetSashGravity(0.5);
 
             panelClipping3D->SetMinimumPaneSize( 20 );
 //            panelClipping3D->SplitHorizontally( panelControl , window3D , 40  );
-                       panelClipping3D->SplitHorizontally( window3D, controlPanelMPR3D , -160  );
+                       panelClipping3D->SplitHorizontally( window3D, controlPanelMPR3D , -140  );
 //            panelClipping3D->SplitHorizontally( controlPanelMPR3D , window3D , 0  );
 
 //            int width,height;
index ee951baa9500e16e27c229865f07f6f26b7ec40e..3a909de3e32323b397a4f242d743982781e8e83c 100644 (file)
@@ -368,12 +368,8 @@ void wxVtkMPR3DView::SetImage()
                mchange->Modified();    //important
                mchange->Update();    //important
        }
-       
 */
-
-
-
-
+    
        _planeWidgetX->SetInputData( imageData );
        _planeWidgetY->SetInputData( imageData );
        _planeWidgetZ->SetInputData( imageData );
@@ -384,12 +380,9 @@ void wxVtkMPR3DView::SetImage()
        _planeWidgetX->SetSlicePosition( x*spc[0] );
        _planeWidgetY->SetSlicePosition( y*spc[1] );
        _planeWidgetZ->SetSlicePosition( z*spc[2] );
-
        _planeWidgetX->GetTexture()->SetInterpolate( _vtkmpr3Ddataviewer->GetVtkMPRBaseData()->GetInterpolate() );
        _planeWidgetY->GetTexture()->SetInterpolate( _vtkmpr3Ddataviewer->GetVtkMPRBaseData()->GetInterpolate() );
        _planeWidgetZ->GetTexture()->SetInterpolate( _vtkmpr3Ddataviewer->GetVtkMPRBaseData()->GetInterpolate() );
-
-
        // -- Plane widget
        _probe->SetSourceData( imageData );
 #endif
@@ -418,25 +411,21 @@ vtkImagePlaneWidget* wxVtkMPR3DView::GetPlaneWidget(unsigned char activationkey,
                image->GetExtent(xMin, xMax, yMin, yMax, zMin, zMax);
                image->GetSpacing(xSpacing, ySpacing, zSpacing);
        }
-
        if (activationkey=='x')
        {
                planeWidget->SetPlaneOrientationToXAxes();
                planeWidget->SetSlicePosition((xMax+xMin)/2.*xSpacing);
        }
-
        if (activationkey=='y')
        {
                planeWidget->SetPlaneOrientationToYAxes();
                planeWidget->SetSlicePosition((yMax+yMin)/2.*ySpacing);
        }
-
        if (activationkey=='z')
        {
                planeWidget->SetPlaneOrientationToZAxes();
                planeWidget->SetSlicePosition((zMax+zMin)/2.*zSpacing);
        }
-
        planeWidget->DisplayTextOn();
        planeWidget->SetPicker(picker);
        planeWidget->SetKeyPressActivationValue(activationkey);