Compare commits

..

6 Commits

Author SHA1 Message Date
luca.mazzoleni dcc1e5b543 Merge branch 'release/2.5f2' 2023-06-28 11:35:35 +02:00
luca.mazzoleni 01260c7278 update log 2023-06-28 11:34:47 +02:00
luca.mazzoleni f2bdb23f9d Merge branch 'master' into develop 2023-06-28 11:33:58 +02:00
DarioS 1131948d33 DataWall 2.5f2 :
- aggiunte due nuove origini (TN e BN che come X usano WD.NEW_REF), in totale ora sono 8.
2023-06-28 10:50:00 +02:00
luca.mazzoleni be33225242 corretto update log 2023-06-19 18:26:16 +02:00
luca.mazzoleni 2db0e4b8a9 Merge tag '2.5f1' into develop
Finish Release: 2.5f1
2023-06-13 10:01:07 +02:00
3 changed files with 14 additions and 4 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()
+4 -1
View File
@@ -1,6 +1,9 @@
==== Wall Update Log ====
Versione 2.5f1 (13/03/2023)
Versione 2.5f2 (28/06/2023)
- Added : aggiunte due nuove origini (TN e BN che come X usano WD.NEW_REF), in totale ora sono 8.
Versione 2.5f1 (13/06/2023)
- Added : aggiunta gestione priorità da btl
- Added : aggiunta gestione lavorazione per lamatura speciale affondata con Tool_ID specifico.
+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'