DataBeam :

- migliorie.
This commit is contained in:
Dario Sassi
2019-10-02 09:36:29 +00:00
parent a4ce17b068
commit 2981dcb50d
2 changed files with 6 additions and 10 deletions
+2 -2
View File
@@ -47,8 +47,8 @@ function MachiningLib.FindPocketing( sType, dMaxDiam, dDepth)
if sTool and EgtTdbSetCurrTool( sTool) then
local dTDiam = EgtTdbGetCurrToolParam( MCH_TP.DIAM)
local dTMaxDepth = EgtTdbGetCurrToolMaxDepth()
if ( not dMaxDiam or dTDiam < dMaxDiam) and
( not dDepth or dTMaxDepth > dDepth) then
if ( not dMaxDiam or dTDiam < dMaxDiam + GEO.EPS_SMALL) and
( not dDepth or dTMaxDepth > dDepth - GEO.EPS_SMALL) then
return Pocketing.Name
end
end