34 lines
1.7 KiB
Lua
34 lines
1.7 KiB
Lua
-- MillingData.lua by Egaltech s.r.l. 05/12/2023 11:50:11
|
|
-- Gestione dati lavorazioni per Travi
|
|
|
|
-- Tabella per definizione modulo
|
|
local MillingData = {
|
|
{ On = true, Name = 'Profiling30x180', Type = 'Prof'},
|
|
{ On = true, Name = 'FreeCont30x180', Type = 'FreeContour'},
|
|
{ On = true, Name = 'FreeCont20x50', Type = 'FreeContour'},
|
|
{ On = true, Name = 'FreeCont45x80', Type = 'FreeContour'},
|
|
{ On = true, Name = 'Mill_Tenon100x120', Type = 'Tenon'},
|
|
{ On = true, Name = 'Mill_DtTen60x160', Type = 'DtTenon'},
|
|
{ On = true, Name = 'Mill_DtMrt60x160', Type = 'DtMortise'},
|
|
{ On = true, Name = 'Milling100x120', Type = 'BirdsMouth'},
|
|
{ On = false, Name = 'Chamfer30x180', Type = 'Chamfer'},
|
|
{ On = true, Name = 'Milling100x120', Type = 'Chamfer'},
|
|
{ On = true, Name = 'Text45x40', Type = 'Mark'},
|
|
{ On = true, Name = 'Text45x40', Type = 'Text'},
|
|
{ On = true, Name = 'Text45x40', Type = 'Decor01'},
|
|
{ On = true, Name = 'Mill_L2C100x120', Type = 'Long2Cut'},
|
|
{ On = true, Name = 'Mill_L2CD30x180', Type = 'Long2CutDown'},
|
|
{ On = false, Name = 'Mill_L2CD100x120', Type = 'Long2CutDown'},
|
|
{ On = true, Name = 'Mill_L2CD30x180', Type = 'Long2CutSide'},
|
|
{ On = true, Name = 'Mill_L2CD100x120', Type = 'Long2CutSide'},
|
|
{ On = true, Name = 'Milling30x180', Type = 'LongSmallCut'},
|
|
{ On = true, Name = 'MillOnSideBH', Type = 'BHSideMill'},
|
|
{ On = true, Name = 'FreeCont30x180', Type = 'SmallToolContour'},
|
|
{ On = true, Name = 'Milling10x50', Type = 'SmallToolContour'},
|
|
{ On = true, Name = 'Milling30x180', Type = 'AntiSplintMillCut'},
|
|
{ On = true, Name = 'Clean35x40', Type = 'CleanCorner'}
|
|
}
|
|
|
|
---------------------------------------------------------------------
|
|
return MillingData
|