From fc26a8ad4a1f3b53498a8d606554022180c61514 Mon Sep 17 00:00:00 2001 From: "luca.mazzoleni" Date: Thu, 19 Jun 2025 12:03:15 +0200 Subject: [PATCH 1/2] - in StepJointNotch corretta distanza attacco in/out --- LuaLibs/ProcessStepJointNotch.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LuaLibs/ProcessStepJointNotch.lua b/LuaLibs/ProcessStepJointNotch.lua index dbb586a..a24dec6 100644 --- a/LuaLibs/ProcessStepJointNotch.lua +++ b/LuaLibs/ProcessStepJointNotch.lua @@ -288,8 +288,8 @@ local function MachineByMill( Proc, nPhase, nRawId, nPartId, b3Solid, ptC, vtN, -- setto a 0 eventuali offset EgtSetMachiningParam( MCH_MP.OFFSR, 0) -- applico gli allungamenti o accorciamenti considerando che la lavorazione è invertita - EgtSetMachiningParam( MCH_MP.STARTADDLEN, EgtIf( bOpenStart, dTDiam / 2, - dTDiam / 2)) - EgtSetMachiningParam( MCH_MP.ENDADDLEN, EgtIf( bOpenEnd, dTDiam / 2, - dTDiam / 2)) + EgtSetMachiningParam( MCH_MP.STARTADDLEN, EgtIf( bOpenStart, dTDiam / 2 + 10, - dTDiam / 2)) + EgtSetMachiningParam( MCH_MP.ENDADDLEN, EgtIf( bOpenEnd, dTDiam / 2 + 10, - dTDiam / 2)) -- attacchi e uscite lineari con parte tg nulla EgtSetMachiningParam( MCH_MP.LEADINTYPE, MCH_MILL_LI.LINEAR) EgtSetMachiningParam( MCH_MP.LITANG, 0) From 872a3ec8992243400a8956b8436d92de52e4a0a5 Mon Sep 17 00:00:00 2001 From: "luca.mazzoleni" Date: Thu, 19 Jun 2025 12:07:23 +0200 Subject: [PATCH 2/2] update version e log --- UpdateLog.txt | 3 +++ Version.lua | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/UpdateLog.txt b/UpdateLog.txt index 086b4c5..27179d6 100644 --- a/UpdateLog.txt +++ b/UpdateLog.txt @@ -1,5 +1,8 @@ ==== Beam Update Log ==== +Versione 2.7f3 (19/06/2025) +- Modifx : in StepJointNotch corretta distanza attacco in/out + Versione 2.7f2 (18/06/2025) - Modif : in LongDoubleCut aggiunto messaggio feature non completa se utensile non arriva sul fondo - Modif : in StepJointNotch, se si forza truciolatore, si prende utensile più grande diff --git a/Version.lua b/Version.lua index 9e44e6f..a3359a8 100644 --- a/Version.lua +++ b/Version.lua @@ -2,5 +2,5 @@ -- Gestione della versione di Beam NAME = 'Beam' -VERSION = '2.7f2' +VERSION = '2.7f3' MIN_EXE = '2.6e5'