EgtMachKernel 3.1h2 :

- modifiche per gestione visualizzazione Vmill in simulazione con funzione SimShowVMill (implementata solo in SimulatorSP).
This commit is contained in:
Dario Sassi
2026-08-13 18:09:21 +02:00
parent 1976b39c0b
commit 1ff741b794
7 changed files with 54 additions and 0 deletions
+11
View File
@@ -130,6 +130,17 @@ MachMgr::SimSetUiStatus( int nUiStatus)
return m_pSimul->SetUiStatus( nUiStatus) ;
}
//----------------------------------------------------------------------------
bool
MachMgr::SimShowVMill( bool bShow)
{
// verifico simulatore
if ( m_pSimul == nullptr)
return false ;
// imposto visualizzazione solidi Vmill
return m_pSimul->ShowVMill( bShow) ;
}
//----------------------------------------------------------------------------
bool
MachMgr::SimEnableToolTipTrace( bool bEnable)