Merge branch 'master' into develop

This commit is contained in:
luca.mazzoleni
2023-06-28 11:33:58 +02:00
2 changed files with 10 additions and 3 deletions
+8 -1
View File
@@ -1,7 +1,8 @@
-- WallExec.lua by Egaltech s.r.l. 2023/03/06
-- WallExec.lua by Egaltech s.r.l. 2023/06/27
-- Libreria esecuzione lavorazioni per Pareti
-- 2023/05/25 Aggiunto ordinamento in base a priorità da btl.
-- 2023/06/07 Nel caso di outline con priorità aggiunta la rimozione degli sfridi nella lavorazione successiva.
-- 2023/06/27 Aggiunte origini TN e BN.
-- Tabella per definizione modulo
local WallExec = {}
@@ -93,6 +94,12 @@ function WallExec.ProcessWalls( dRawL, dRawW, dRawH, vWall, bMachGroupOk, bNewPr
elseif sOrigCorner == 'BM' then
nCorner = MCH_CR.BR
OrigOnTab = Point3d( WD.MID_REF - abs( WD.DELTA_X or 0), abs( WD.DELTA_Y or 0), ( WD.DELTA_Z or 0))
elseif sOrigCorner == 'TN' then
nCorner = MCH_CR.TL
OrigOnTab = Point3d( WD.NEW_REF + abs( WD.DELTA_X or 0), b3Tab:getDimY() - abs( WD.DELTA_Y or 0), ( WD.DELTA_Z or 0))
elseif sOrigCorner == 'BN' then
nCorner = MCH_CR.BL
OrigOnTab = Point3d( WD.NEW_REF + abs( WD.DELTA_X or 0), abs( WD.DELTA_Y or 0), ( WD.DELTA_Z or 0))
end
-- Impostazione dell'attrezzaggio di default
EgtImportSetup()
+2 -2
View File
@@ -1,6 +1,6 @@
-- Version.lua by Egalware s.r.l. 2023/05/04
-- Version.lua by Egalware s.r.l. 2023/06/28
-- Gestione della versione di Wall
NAME = 'Wall'
VERSION = '2.5f1'
VERSION = '2.5f2'
MIN_EXE = '2.5b3'