32 lines
1.6 KiB
Lua
32 lines
1.6 KiB
Lua
-- MillingData.lua by Egaltech s.r.l. 28/06/2021 19:55:21
|
|
-- 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 = 'Mill_Tenon100x60', Type = 'Tenon'},
|
|
{ On = true, Name = 'Mill_Tenon100x150', Type = 'Tenon'},
|
|
{ On = true, Name = 'Mill_DtTen60x130', Type = 'DtTenon'},
|
|
{ On = true, Name = 'Mill_DtMrt60x130', Type = 'DtMortise'},
|
|
{ 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 = 'Text45x40', Type = 'Decor01'},
|
|
{ On = true, Name = 'Mill_L2C100x60', Type = 'Long2Cut'},
|
|
{ On = true, Name = 'Mill_L2CD25x130', Type = 'Long2CutDown'},
|
|
{ On = true, Name = 'Mill_L2CD25x130', Type = 'Long2CutSide'},
|
|
{ On = true, Name = 'Milling25x130', Type = 'LongSmallCut'},
|
|
{ On = true, Name = 'MillOnSideBH', Type = 'BHSideMill'},
|
|
{ On = true, Name = 'Milling10x50', Type = 'SmallToolContour'},
|
|
{ On = true, Name = 'Clean35x40', Type = 'CleanCorner'},
|
|
{ On = true, Name = 'Mill_DTCone125x160', Type = 'ProfTCone'}
|
|
}
|
|
|
|
---------------------------------------------------------------------
|
|
return MillingData
|