27 lines
1.2 KiB
Lua
27 lines
1.2 KiB
Lua
-- MillingData.lua by Egaltech s.r.l. 11-04-2023 11:14:51
|
|
-- Gestione dati lavorazioni per Travi
|
|
|
|
-- Tabella per definizione modulo
|
|
local MillingData = {
|
|
{ On = true, Name = 'Milling70x50', Type = 'FreeContour'},
|
|
{ On = true, Name = 'Milling90x50', Type = 'FreeContour'},
|
|
{ On = true, Name = 'vlakfrees 180x15', Type = 'DtMortise'},
|
|
{ On = true, Name = 'Milling30x75DIA', Type = 'FreeContour'},
|
|
{ On = true, Name = 'Milling30x75DIA', Type = 'Side'},
|
|
{ On = true, Name = 'SideMill180x15', Type = 'Side'},
|
|
{ On = true, Name = 'Milling40x160', Type = 'Side'},
|
|
{ On = true, Name = 'Milling30x120', Type = 'Side'},
|
|
{ On = true, Name = 'Milling25x65', Type = 'Side'},
|
|
{ On = true, Name = 'Milling20x75', Type = 'Side'},
|
|
{ On = true, Name = 'Milling12x40', Type = 'Side'},
|
|
{ On = true, Name = 'Milling40x160', Type = 'FreeContour'},
|
|
{ On = true, Name = 'Milling30x120', Type = 'FreeContour'},
|
|
{ On = true, Name = 'Milling25x65', Type = 'FreeContour'},
|
|
{ On = true, Name = 'Milling20x75', Type = 'FreeContour'},
|
|
{ On = true, Name = 'Milling12x40', Type = 'FreeContour'},
|
|
{ On = true, Name = 'Milling06x25', Type = 'FreeContour'}
|
|
}
|
|
|
|
---------------------------------------------------------------------
|
|
return MillingData
|