EgtMachKernel :
- corretto recupero testa - migliorata gestione angoli indeterminati - migliorato controllo massimo affondamento in fresatura.
This commit is contained in:
+2
-2
@@ -1052,8 +1052,8 @@ Milling::ProcessPath( int nPathId, int nPvId, int nClId)
|
||||
return false ;
|
||||
|
||||
// verifico di non superare il massimo materiale
|
||||
if ( ( m_Params.m_dStep < EPS_SMALL && dElev > m_TParams.m_dMaxMat) ||
|
||||
( m_Params.m_dStep > EPS_SMALL && m_Params.m_dStep > m_TParams.m_dMaxMat)) {
|
||||
if ( ( m_Params.m_dStep < EPS_SMALL && dElev > m_TParams.m_dMaxMat + EPS_SMALL) ||
|
||||
( m_Params.m_dStep > EPS_SMALL && m_Params.m_dStep > m_TParams.m_dMaxMat + EPS_SMALL)) {
|
||||
LOG_INFO( GetEMkLogger(), "Error in Milling : machining depth bigger than MaxMaterial") ;
|
||||
return false ;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user