- in BeamData migliorata GetMinNzDownUp

This commit is contained in:
luca.mazzoleni
2025-10-15 15:07:02 +02:00
parent f72e25c626
commit 28756e324e
2 changed files with 8 additions and 3 deletions
+7 -2
View File
@@ -134,9 +134,14 @@ local function GetMinNzTopHead( vtNFace, Tool)
end
---------------------------------------------------------------------
-- con angolo limite di -11 il DownUp ha senso solo se si è sotto all'angolo limite
local function GetMinNzDownUp( b3Raw, vtNFace, vtToolDirection, Tool)
return GetMinNzTopHead( vtNFace, Tool)
if vtNFace and abs( vtNFace:getY()) < 0.173
and vtToolDirection and vtToolDirection:getY() < 0.173 then
return sin ( -10.9)
else
return -1
end
end
---------------------------------------------------------------------