- in NestProcess modifiche per leggere la modalità di nesting e le sezionatrici per cui esportare da WallData

This commit is contained in:
luca.mazzoleni
2025-09-11 12:37:07 +02:00
parent dbf668863a
commit 8d26b20ce4
2 changed files with 8 additions and 5 deletions
+2 -2
View File
@@ -268,12 +268,12 @@ local function BuildCuttingList( PanelList, sOutputType)
end
-- Casadei
if sOutputType == 'Cutty' then
if sOutputType == 'CUTTY' then
LinesToWrite = BuildCuttingList_Cutty( PanelList, ActualSheetList, ProjectInfo)
-- Homag Optimat
elseif sOutputType == 'Homag' then
elseif sOutputType == 'HOMAG' then
end
+6 -3
View File
@@ -1689,7 +1689,7 @@ EgtResetCurrMachGroup()
-- modalità nesting utile per cabinet: un grezzo per ogni pezzo, pezzo centrato nel grezzo. Il grezzo non viene preso da magazzino ma creato ad hoc, con un dato sovramateriale.
-- il numero del MachGroup deve coincidere con il PDN del pezzo originale
if NEST.FLAG == 2 then
if NEST.FLAG ~= 11 and WD.ENABLE_SIMPLE_NESTING then
-- sovramateriale richiesto
local dOverMaterial = max( 0, NEST.KERF or 2)
@@ -1796,8 +1796,11 @@ if NEST.FLAG == 2 then
elseif NEST.FLAG == 11 then
-- TODO gestire tipo di cutting list da generare (PANELSAW)
PanelSaw.GenerateCuttingList( 'Cutty')
local vCuttingListType = EgtSplitString( WD.PANELSAW_TYPE)
for i = 1, #vCuttingListType do
local sCuttingListType = vCuttingListType[i]
PanelSaw.GenerateCuttingList( sCuttingListType)
end
return
end