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
}
//---------------------------------------------------------------------------