Files
Carlo Baronchelli 741791a0e4 Copia locale Iniziale
2022-05-19 16:04:07 +02:00

38 lines
2.0 KiB
Lua

-- MillingData.lua by Egaltech s.r.l. 06/10/2021 17:17:51
-- Gestione dati lavorazioni per Travi
-- Tabella per definizione modulo
local MillingData = {
{ On = true, Name = 'Profiling25x130_H1', Type = 'Prof'},
{ On = true, Name = 'Profiling25x130_H2', Type = 'Prof_H2'},
{ On = true, Name = 'FreeCont25x130_H1', Type = 'FreeContour'},
{ On = true, Name = 'FreeCont25x130_H2', Type = 'FreeContour'},
{ On = true, Name = 'Mill_Tenon200x60_H1', Type = 'Tenon'},
{ On = false, Name = 'Milling20x50_H1', Type = 'Tenon'},
{ On = true, Name = 'Mill_Tenon100x60_H2', Type = 'Tenon_H2'},
{ On = false, Name = 'Milling20x50_H2', Type = 'Tenon_H2'},
{ On = true, Name = 'Mill_DtTen60x130_H1', Type = 'DtTenon'},
{ On = true, Name = 'Mill_DtTen60x130_H2', Type = 'DtTenon_H2'},
{ On = true, Name = 'Mill_DtMrt60x130_H1', Type = 'DtMortise'},
{ On = true, Name = 'Mill_DtMrt60x130_H2', Type = 'DtMortise_H2'},
{ On = true, Name = 'Milling200x60_H1', Type = 'BirdsMouth'},
{ On = true, Name = 'Milling100x60_H2', Type = 'BirdsMouth_H2'},
{ On = true, Name = 'Edge25x130_H1', Type = 'Chamfer'},
{ On = true, Name = 'Edge25x130_H2', Type = 'Chamfer'},
{ On = true, Name = 'Chamf45x40_H1', Type = 'Mark'},
{ On = true, Name = 'Chamf45x40_H2', Type = 'Mark_H2'},
{ On = true, Name = 'Chamf45x40_H1', Type = 'Text'},
{ On = true, Name = 'Chamf45x40_H2', Type = 'Text_H2'},
{ On = true, Name = 'Marking_H1', Type = 'Text'},
{ On = true, Name = 'Marking_H2', Type = 'Text_H2'},
{ On = true, Name = 'Mill_L2C200x60_H1', Type = 'Long2Cut'},
{ On = true, Name = 'Mill_L2C100x60_H2', Type = 'Long2Cut'},
{ On = true, Name = 'Milling25x130_H1', Type = 'LongSmallCut'},
{ On = true, Name = 'Milling25x130_H2', Type = 'LongSmallCut_H2'},
{ On = true, Name = 'Milling25x130_H1', Type = 'AntiSplintMillCut'},
{ On = true, Name = 'Milling25x130_H2', Type = 'AntiSplintMillCut_H2'}
}
---------------------------------------------------------------------
return MillingData