Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 36618ccc02 | |||
| e66038461d | |||
| 1dc22e5af3 | |||
| dfcb06c298 | |||
| ef7d328eee | |||
| 11683fa34d |
@@ -4914,6 +4914,30 @@ local function ManageAntiSplintBySaw( Proc, b3Raw, b3Solid, bIsU, vtN, nFacInd,
|
||||
EgtSetMachiningParam( MCH_MP.INVERT, not bInvert)
|
||||
-- setto l'offset pari allo spessore lama
|
||||
EgtSetMachiningParam( MCH_MP.OFFSL, -dSawThick)
|
||||
local LeadIn = {
|
||||
dStartAddLen = EgtGetMachiningParam( MCH_MP.STARTADDLEN),
|
||||
dLeadInTangDist = EgtGetMachiningParam( MCH_MP.LITANG),
|
||||
dLeadInPerpDist = EgtGetMachiningParam( MCH_MP.LIPERP),
|
||||
dLeadInElev = EgtGetMachiningParam( MCH_MP.LIELEV),
|
||||
dLeadInCompLen = EgtGetMachiningParam( MCH_MP.LICOMPLEN)
|
||||
}
|
||||
local LeadOut = {
|
||||
dEndAddLen = EgtGetMachiningParam( MCH_MP.ENDADDLEN),
|
||||
dLeadOutTangDist = EgtGetMachiningParam( MCH_MP.LOTANG),
|
||||
dLeadOutPerpDist = EgtGetMachiningParam( MCH_MP.LOPERP),
|
||||
dLeadOutElev = EgtGetMachiningParam( MCH_MP.LOELEV),
|
||||
dLeadOutCompLen = EgtGetMachiningParam( MCH_MP.LOCOMPLEN)
|
||||
}
|
||||
EgtSetMachiningParam( MCH_MP.STARTADDLEN, LeadOut.dEndAddLen)
|
||||
EgtSetMachiningParam( MCH_MP.LITANG, LeadOut.dLeadOutTangDist)
|
||||
EgtSetMachiningParam( MCH_MP.LIPERP, LeadOut.dLeadOutPerpDist)
|
||||
EgtSetMachiningParam( MCH_MP.LIELEV, LeadOut.dLeadOutElev)
|
||||
EgtSetMachiningParam( MCH_MP.LICOMPLEN, LeadOut.dLeadOutCompLen)
|
||||
EgtSetMachiningParam( MCH_MP.ENDADDLEN, LeadIn.dStartAddLen)
|
||||
EgtSetMachiningParam( MCH_MP.LOTANG, LeadIn.dLeadInTangDist)
|
||||
EgtSetMachiningParam( MCH_MP.LOPERP, LeadIn.dLeadInPerpDist)
|
||||
EgtSetMachiningParam( MCH_MP.LOELEV, LeadIn.dLeadInElev)
|
||||
EgtSetMachiningParam( MCH_MP.LOCOMPLEN, LeadIn.dLeadInCompLen)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,4 +1,8 @@
|
||||
==== Beam Update Log ====
|
||||
Versione 3.1h1 (05/08/2026)
|
||||
- Modif : in Pocket non eseguo lavorazione di pulizia tasca (laterale) se le lavorazioni sopra e sotto arrivano esattamente a metà tasca (senza affondamento extra)
|
||||
- Modif : in RoundCleanContour - tasca passante lavorata solo da sopra o da sotto e fresa di contorno non lavora tutto, attiva lavorazione in doppio
|
||||
|
||||
Versione 3.1g5 (31/07/2026)
|
||||
- Fixed : in RoundCleanContour per tasche a 3 facce a U in doppio
|
||||
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
-- Version.lua by Egaltech s.r.l. 2026/05/31
|
||||
-- Version.lua by Egaltech s.r.l. 2026/08/05
|
||||
-- Gestione della versione di Beam
|
||||
|
||||
NAME = 'Beam'
|
||||
VERSION = '3.1g5'
|
||||
VERSION = '3.1h1'
|
||||
MIN_EXE = '3.1b1'
|
||||
|
||||
Reference in New Issue
Block a user