Corretto bug che provocava il calcolo errato della profondità di tasche laterali se maggiore del massimo materiale fresa
This commit is contained in:
@@ -3097,7 +3097,7 @@ local function MakePocket( Proc, nPartId, ptPs, tvtN, nFaceRef, sMchFind, nUseRo
|
||||
local sWarn
|
||||
local dDepth = dElev
|
||||
if dElev > dMaxDepth + 10 * GEO.EPS_SMALL then
|
||||
dDepth = dElev
|
||||
dDepth = dMaxDepth - dElev
|
||||
EgtSetMachiningParam( MCH_MP.DEPTH, dDepth)
|
||||
dElev = dMaxDepth
|
||||
sWarn = 'Warning : elevation bigger than max tool depth'
|
||||
|
||||
Reference in New Issue
Block a user