in SawPlusChain:
- modifiche per contemplare funzione EgtSurfTmGetFacetOutlineInfo - migliorie alle funzioni di calcolo parametri lavorazione - ciclo step orizzontali lama spostato in funzione apposita ApplyAllSteps
This commit is contained in:
+2
-2
@@ -1217,9 +1217,9 @@ function BeamLib.GetMachiningSteps( dMachiningDepth, dStep)
|
||||
|
||||
local MachiningSteps = {}
|
||||
MachiningSteps.StepLength = 0
|
||||
MachiningSteps.Count = ceil( ( dStep - 10 * GEO.EPS_SMALL) / dMachiningDepth)
|
||||
MachiningSteps.Count = ceil( ( dMachiningDepth - 10 * GEO.EPS_SMALL) / dStep)
|
||||
if MachiningSteps.Count > 1 then
|
||||
MachiningSteps.StepLength = ( dStep - dMachiningDepth) / ( MachiningSteps.Count - 1)
|
||||
MachiningSteps.StepLength = ( dMachiningDepth - dStep) / ( MachiningSteps.Count - 1)
|
||||
end
|
||||
|
||||
return MachiningSteps
|
||||
|
||||
Reference in New Issue
Block a user