EgtMachKernel :

- passo minimo di fresature portato da 1.0 a 0.1
- corretta determinazione se posizioni di attacco/uscita sono sotto il grezzo.
This commit is contained in:
Dario Sassi
2020-06-08 06:24:08 +00:00
parent 75266fd465
commit 79864ed594
3 changed files with 9 additions and 4 deletions
+1 -1
View File
@@ -1702,7 +1702,7 @@ Milling::ProcessPath( int nPathId, int nPvId, int nClId)
// verifico che lo step dell'utensile sia sensato
double dOkStep = ( m_Params.m_dStep > EPS_SMALL ? m_Params.m_dStep + EPS_ZERO : 0) ;
const double MIN_ZSTEP = ( m_TParams.m_nType != TT_MILL_POLISHING ? 1.0 : EPS_SMALL) ;
const double MIN_ZSTEP = ( m_TParams.m_nType != TT_MILL_POLISHING ? 0.1 : EPS_SMALL) ;
if ( dOkStep >= EPS_SMALL && dOkStep < MIN_ZSTEP) {
dOkStep = MIN_ZSTEP + EPS_ZERO ;
string sInfo = "Warning in Milling : machining step too small (" +