]> Creatis software - creaMaracasVisu.git/commitdiff
Test code
authoreduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Fri, 17 Jan 2025 15:06:00 +0000 (16:06 +0100)
committereduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Fri, 17 Jan 2025 15:06:00 +0000 (16:06 +0100)
lib/maracasVisuLib/src/interface/wxWindows/widgets/wxVtkBaseView.cxx

index 937212d3b5887677810433b117e636f5a9a8e1de..3bdaa1302827e0e86eed538edf900951d84f0222 100644 (file)
@@ -85,39 +85,47 @@ void wxVtkBaseView::Configure()  // virtual
 void wxVtkBaseView::Refresh()  // virtual
 {
     printf("EED wxVtkBaseView::Refresh \n");
-// EED 10 Oct 2007
-       #if defined(WIN32)
-               _iren->Refresh(true);
-// EED 27 sept 2016
-          vtkRenderWindowInteractor *vri = GetWxVTKRenderWindowInteractor();
-          vri->vtkRenderWindowInteractor::Render();
-       #else
-//EED 01Avril2009
-//             _iren->Render();        
-       vtkRenderWindowInteractor *vri = GetWxVTKRenderWindowInteractor();
-
-//auto start1 = std::chrono::high_resolution_clock::now();
-
-    vri->vtkRenderWindowInteractor::Render();
     
-//auto stop1       = std::chrono::high_resolution_clock::now();
-//auto duration1   = std::chrono::duration_cast<std::chrono::microseconds>(stop1 - start1);
-//printf("EED wxVtkBaseView::Refresh time= %ld  %p  direction=%d  \n", duration1.count() ,  vri , GetDirection() );
-    
-               //_iren->Refresh();
-       #endif
+    if (firstTimeOnPaint==true)
+    {
+        
+        // EED 10 Oct 2007
+#if defined(WIN32)
+        _iren->Refresh(true);
+        // EED 27 sept 2016
+        vtkRenderWindowInteractor *vri = GetWxVTKRenderWindowInteractor();
+        vri->vtkRenderWindowInteractor::Render();
+#else
+        //EED 01Avril2009
+        //             _iren->Render();
+        vtkRenderWindowInteractor *vri = GetWxVTKRenderWindowInteractor();
+        
+        //auto start1 = std::chrono::high_resolution_clock::now();
+        
+        vri->vtkRenderWindowInteractor::Render();
+        
+        //auto stop1       = std::chrono::high_resolution_clock::now();
+        //auto duration1   = std::chrono::duration_cast<std::chrono::microseconds>(stop1 - start1);
+        //printf("EED wxVtkBaseView::Refresh time= %ld  %p  direction=%d  \n", duration1.count() ,  vri , GetDirection() );
+        
+        //_iren->Refresh();
+#endif
+    } // if firstTimeOnPaint
 }
 
 //-------------------------------------------------------------------
 void wxVtkBaseView::RefreshView()  // virtual 
 {
-    printf("EED wxVtkBaseView::RefreshView \n");
-// EED 10 Oct 2007
-       #if defined(WIN32)
-               GetRenWin()->Render();
-       #else
-               //GetRenWin()->Render();
-       #endif
+    if (firstTimeOnPaint==true)
+    {
+        printf("EED wxVtkBaseView::RefreshView \n");
+        // EED 10 Oct 2007
+#if defined(WIN32)
+        GetRenWin()->Render();
+#else
+        //GetRenWin()->Render();
+#endif
+    } // if firstTimeOnPaint
 }
 
 //---------------------------------------------------------------------------