#if wxMAJOR_VERSION <= 2
bbGetInputwxVtkBaseView()->GetWxVTKRenderWindowInteractor ()->GetParent()->ProcessEvent( newevent );
#else
- bbGetInputwxVtkBaseView()->GetWxVTKRenderWindowInteractor ()->GetParent()->ProcessWindowEvent( newevent );
+auto start1 = std::chrono::high_resolution_clock::now();
+ bbGetInputwxVtkBaseView()->GetWxVTKRenderWindowInteractor ()->GetParent()->ProcessWindowEvent( newevent );
+auto stop1 = std::chrono::high_resolution_clock::now();
+auto duration1 = std::chrono::duration_cast<std::chrono::microseconds>(stop1 - start1);
+printf("EED SetPosition::Process time= %ld \n", duration1.count() , this->bbGetFullName().c_str() );
+
+
#endif
vtkmprbasedata->SetFixAxis2D( tmpFixAxis );
} // if bbGetInputPosition
//-------------------------------------------------------------
void bbwxMaracas_N_ViewersWidget::OnRefreshView2(wxCommandEvent & event)
{
-auto start1 = std::chrono::high_resolution_clock::now();
+// auto start1 = std::chrono::high_resolution_clock::now();
wxMaracas_N_ViewersWidget::OnRefreshView(event);
-auto stop1 = std::chrono::high_resolution_clock::now();
-auto duration1 = std::chrono::duration_cast<std::chrono::microseconds>(stop1 - start1);
-printf("EED bbwxMaracas_N_ViewersWidget::OnRefreshView time= %ld \n", duration1.count() , mbbViewerNV->bbGetFullName().c_str() );
+// auto stop1 = std::chrono::high_resolution_clock::now();
+// auto duration1 = std::chrono::duration_cast<std::chrono::microseconds>(stop1 - start1);
+// printf("EED bbwxMaracas_N_ViewersWidget::OnRefreshView time= %ld \n", duration1.count() , mbbViewerNV->bbGetFullName().c_str() );
}
//-------------------------------------------------------------