40 lines
2.1 KiB
Lua
40 lines
2.1 KiB
Lua
-- MillingData.lua by Egaltech s.r.l. 16/02/2024 14:27:51
|
|
-- Gestione dati lavorazioni per Travi
|
|
|
|
-- Tabella per definizione modulo
|
|
local MillingData = {
|
|
{ On = true, Name = 'Profiling25x130', Type = 'Prof'},
|
|
{ On = true, Name = 'FreeCont25x130', Type = 'FreeContour'},
|
|
{ On = true, Name = 'FreeCont20x50', Type = 'FreeContour'},
|
|
{ On = true, Name = 'Mill_Tenon100x150', Type = 'Tenon'},
|
|
{ On = true, Name = 'Mill_Tenon100x60', Type = 'Tenon'},
|
|
{ On = true, Name = 'Mill_DtTen60x130', Type = 'DtTenon'},
|
|
{ On = true, Name = 'Mill_DtMrt60x130', Type = 'DtMortise'},
|
|
{ On = true, Name = 'Mill_DtMrt60x39_AT', Type = 'DtMortise_AT'},
|
|
{ On = false, Name = 'Mill_DtMrt40x120r', Type = 'DtMortise'},
|
|
{ On = true, Name = 'Mill_DtMrt35x130', Type = 'DtMortise'},
|
|
{ On = true, Name = 'Milling100x60', Type = 'BirdsMouth'},
|
|
{ On = false, Name = 'Chamfer25x130', Type = 'Chamfer'},
|
|
{ On = true, Name = 'Milling100x60', Type = 'Chamfer'},
|
|
{ On = true, Name = 'Text45x40', Type = 'Mark'},
|
|
{ On = true, Name = 'TextPenna', Type = 'Text'},
|
|
{ On = true, Name = 'TextPenna_AT', Type = 'Text_AT'},
|
|
{ On = true, Name = 'Text45x40', Type = 'Decor01'},
|
|
{ On = true, Name = 'Mill_L2C100x60', Type = 'Long2Cut'},
|
|
{ On = true, Name = 'Mill_L2CD25x130', Type = 'Long2CutDown'},
|
|
{ On = false, Name = 'Mill_L2CD100x60', Type = 'Long2CutDown'},
|
|
{ On = true, Name = 'Mill_L2CD25x130', Type = 'Long2CutSide'},
|
|
{ On = true, Name = 'Mill_L2CD100x60', Type = 'Long2CutSide'},
|
|
{ On = true, Name = 'Milling25x130', Type = 'LongSmallCut'},
|
|
{ On = true, Name = 'Milling240x20x195', Type = 'BHSideMill'},
|
|
{ On = true, Name = 'MillOnSideBH', Type = 'BHSideMill'},
|
|
{ On = true, Name = 'FreeCont25x130', Type = 'SmallToolContour'},
|
|
{ On = true, Name = 'Milling10x50', Type = 'SmallToolContour'},
|
|
{ On = true, Name = 'Milling25x130', Type = 'AntiSplintMillCut'},
|
|
{ On = true, Name = 'Clean35x40', Type = 'CleanCorner'},
|
|
{ On = true, Name = 'Mill_DTCone125x160', Type = 'ProfTCone'}
|
|
}
|
|
|
|
---------------------------------------------------------------------
|
|
return MillingData
|