7309ebb6a3
- SPLITCUT non è più una strategia ma sarà una funzionalità della nuova libreria - Nuova strategia TAILCUT, corrispettivo del HEADCUT sulla testa - Alla feature 340 si applica la strategia TAILCUT
12 lines
784 B
Lua
12 lines
784 B
Lua
-- Parametri configurabili da cliente per strategia: TAILCUT
|
|
|
|
local TAILCUTData = {
|
|
sStrategyId = 'TAILCUT',
|
|
Parameters = {
|
|
{ sName = 'bMakeChamfer', sValue = 'false', sDescriptionShort = 'Execute Chamfer', sDescriptionLong = 'Use the V-Mill to execute chamfers on cut-edges', sType = 'b', sMessageId = '', sMinUserLevel = '1'},
|
|
{ sName = 'bForceChainSaw', sValue = 'false', sDescriptionShort = 'Force to use chain saw', sDescriptionLong = 'Force to use chain saw', sType = 'b', sMessageId = '', sMinUserLevel = '1'},
|
|
{ sName = 'bFinishWithMill', sValue = 'true', sDescriptionShort = 'Finish with mill', sDescriptionLong = 'Use a mill to finish the surface if split with chain saw', sType = 'b', sMessageId = '', sMinUserLevel = '1'}
|
|
}
|
|
}
|
|
|
|
return TAILCUTData |