- in MachiningLib modificata GetMachiningSteps per rispecchiare il calcolo della lavorazione Egt

- in STR0003 modifiche al calcolo risultati per la sola lama utilizzando le aree lavorate ( da completare per sega a catena)
This commit is contained in:
luca.mazzoleni
2025-04-21 15:51:09 +02:00
parent 8c2d9653d7
commit b2917f8b37
5 changed files with 41 additions and 83 deletions
+1 -1
View File
@@ -96,7 +96,7 @@ end
function MachiningLib.GetMachiningSteps( dMachiningDepth, dStep)
local MachiningSteps = {}
MachiningSteps.dStep = 0
MachiningSteps.nCount = ceil( ( dMachiningDepth - 10 * GEO.EPS_SMALL) / dStep)
MachiningSteps.nCount = ceil( ( dMachiningDepth - 50 * GEO.EPS_SMALL) / dStep)
if MachiningSteps.nCount > 1 then
MachiningSteps.dStep = ( dMachiningDepth - dStep) / ( MachiningSteps.nCount - 1)
else