80dcdb0003
- Prima versione GetMainFaces funzionante - Prima bozza struttura codice per scelta strategie - Calcolo delle 4 rotazioni per il recupero dei dati - Prima bozza struttura calcolo voto strategie - Modificate strategie di prova STR0001 e STR0002 con nuovo standard
12 lines
435 B
Lua
12 lines
435 B
Lua
-- Parametri configurabili da cliente per strategia: STR0001
|
|
|
|
local STR0001Data = {
|
|
StrategyId = 'STR0001',
|
|
Parameters = {
|
|
{ Value = '15', Name = 'Step', Description = 'Questo è lo step di lavorazione', Type = 'd'},
|
|
{ Value = '2', Name = 'Depth', Description = 'Affondamento lavorazione', Type = 'd'},
|
|
{ Value = 'false', Name = 'AntiSplint', Description = 'Antischeggia', Type = 'b'}
|
|
}
|
|
}
|
|
|
|
return STR0001Data |