DataWall :

- sistemazioni varie durante prime prove con macchina S3.
This commit is contained in:
Dario Sassi
2020-07-11 09:40:28 +00:00
parent 1f752a05e0
commit 767e7287a5
7 changed files with 347 additions and 77 deletions
+4 -1
View File
@@ -32,7 +32,10 @@ function WMachiningLib.FindCutting( sType)
for i = 1, #Cuttings do
local Cutting = Cuttings[i]
if Cutting.On and Cutting.Type == sType and SetCurrMachiningAndTool( Cutting.Name) then
return Cutting.Name
local dSawDiam = EgtTdbGetCurrToolParam( MCH_TP.DIAM) or 0
local dSawThick = EgtTdbGetCurrToolParam( MCH_TP.THICK) or 0
local dSawMaxDepth = EgtTdbGetCurrToolMaxDepth() or 0
return Cutting.Name, dSawDiam, dSawThick, dSawMaxDepth
end
end
end