Compare commits

...

3 Commits

Author SHA1 Message Date
daniele.nicoli 1f75c58e90 In DtMortise - Aggiunto parametro Q01=1 per non eseguire l'antischeggia 2026-04-09 11:24:19 +02:00
daniele.nicoli d8742cbc86 Merge commit '5c82ab27c8fe58ed01dc78488c520e981b2118a3' into Test_Tick#2870 2026-04-09 09:21:02 +02:00
daniele.nicoli 62c1d2b169 ProcessCut.Make, Aggiunta scrittura HCING 2026-03-26 16:45:37 +01:00
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -231,7 +231,8 @@ function ProcessDtMortise.Make( Proc, nPhase, nRawId, nPartId, dCurrOvmH)
local dAltMort = b3DtMrt:getDimZ()
-- verifico se di tipo pocket
local bPocket = ( EgtGetInfo( Proc.Id, 'P05', 'i') == 1)
if bPocket then bMakeAntiSplitPath = false end
local dForcePrecutBypass = EgtGetInfo( Proc.Id, 'Q01', 'i')
if bPocket or dForcePrecutBypass == 1 then bMakeAntiSplitPath = false end
-- verifico se frontale
local bFront = ( Proc.Prc == 56)
-- se mortasa di fronte, eseguo il taglio della faccia
+1 -1
View File
@@ -8877,7 +8877,7 @@ function ProcessLapJoint.Make( Proc, nPhase, nRawId, nPartId, dOvmHead)
return Fbp.Make( Proc, Proc.Id, 0, sPocketing, nPartId, b3Solid)
-- altrimenti, con lama
else
return Cut.Make( Proc, nPhase, nRawId, nPartId, dOvmHead)
return Cut.Make( Proc, nPhase, nRawId, nPartId, dOvmHead, nil, nil, nil, nil, nil, nil, true)
end
-- due facce
elseif Proc.Fct == 2 then