25 lines
1.1 KiB
Lua
25 lines
1.1 KiB
Lua
-- MillingData.lua by Egaltech s.r.l. 16.12.2021 15:45:56
|
|
-- Gestione dati lavorazioni per Travi
|
|
|
|
-- Tabella per definizione modulo
|
|
local MillingData = {
|
|
{ On = true, Name = 'Milling25x130', Type = 'FreeContour'},
|
|
{ On = true, Name = 'Milling20x100', Type = 'FreeContour'},
|
|
{ On = true, Name = 'Milling20x50', Type = 'FreeContour'},
|
|
{ On = true, Name = 'Milling_10', Type = 'FreeContour'},
|
|
{ On = true, Name = 'Milling200_Nut', Type = 'SideGroove'},
|
|
{ On = true, Name = 'Milling200', Type = 'Side'},
|
|
{ On = true, Name = 'Milling_ball', Type = 'FreeContour'},
|
|
{ On = false, Name = 'Kugelfraeser', Type = 'FreeContour'},
|
|
{ On = true, Name = 'CleanEdge', Type = 'CleanCorner60'},
|
|
{ On = true, Name = 'Milling200', Type = 'FreeContour'},
|
|
{ On = true, Name = 'Nailing_11', Type = 'Nailing'},
|
|
{ On = true, Name = 'Nailing_12', Type = 'Nailing'},
|
|
{ On = true, Name = 'Nailing_13', Type = 'Nailing'},
|
|
{ On = true, Name = 'Nailing_14', Type = 'Nailing'},
|
|
{ On = true, Name = 'Text45x40', Type = 'Text'}
|
|
}
|
|
|
|
---------------------------------------------------------------------
|
|
return MillingData
|