DataBeam :

- corretto riconoscimento normali del box quando raggio esattamente su spigolo
- corretta assegnazione fori molto inclinati fianco/coda a coda
- aggiunta gestione antischeggia con Q06 anche su 3/4-033-X.
This commit is contained in:
DarioS
2022-04-04 07:37:05 +02:00
parent a6b9c14e93
commit 3fb1acd83e
3 changed files with 8 additions and 4 deletions
+1 -1
View File
@@ -403,7 +403,7 @@ function BeamLib.GetBoxFaceNorm( b3Box, ptP, vtV)
local dNzDotV = vtNz * vtV
if dNxDotV > dNyDotV and dNxDotV > dNzDotV then
return vtNx
elseif dNyDotV > dNzDotV and dNyDotV > dNxDotV then
elseif dNyDotV > dNzDotV then
return vtNy
else
return vtNz