EgtMachKernel :

- al salvataggio utensile per sole frese verifico e aggiusto corrispondenza tra feed di testa e sottotipo ( TT_MILL_STD o TT_MILL_NOTIP).
This commit is contained in:
Dario Sassi
2024-07-17 11:27:28 +02:00
parent cd323ec583
commit b5682b4185
+5
View File
@@ -551,6 +551,11 @@ ToolsMgr::SaveCurrTool( void)
m_suData.emplace( m_tdCurrTool.m_sName, m_tdCurrTool.m_Uuid) ;
}
}
// se fresa adatto sottotipo a seconda della capacità di lavorare di testa
if ( m_tdCurrTool.m_nType == TT_MILL_STD && m_tdCurrTool.m_dTipFeed < EPS_SMALL)
m_tdCurrTool.m_nType = TT_MILL_NOTIP ;
else if ( m_tdCurrTool.m_nType == TT_MILL_NOTIP && m_tdCurrTool.m_dTipFeed > EPS_SMALL)
m_tdCurrTool.m_nType = TT_MILL_STD ;
// eseguo salvataggio
m_bModified = true ;
if ( find( m_utModified.begin(), m_utModified.end(), m_tdCurrTool.m_Uuid) == m_utModified.end())