- in BeamExec correzione

This commit is contained in:
luca.mazzoleni
2026-07-16 15:46:01 +02:00
parent 32227ce33b
commit 6dad1e14c4
+1 -1
View File
@@ -1761,7 +1761,7 @@ local function GetCombinationListFromMatrix( ProcessingsOnPart, Part, bReProcess
local dMaxNotClampableLength = 0
for nRotation = 1, 4 do
-- si considera solo rotazione attiva
if string.sub( Part.CombinationList[i].sBitIndexCombination, nRotation, nRotation) == '1' then
if string.sub( Part.CombinationList[i].sBitIndexCombination, nRotation, nRotation) == '1' and ( ProcessingsOnPart.Rotation[nRotation+nOffsetIndex][nProc].nFlg > 0) then
dMaxNotClampableLengthHead = max( ProcessingsOnPart.Rotation[nRotation+nOffsetIndex][nProc].NotClampableLength.dNotClampableLengthHead, dMaxNotClampableLengthHead)
dMaxNotClampableLengthTail = max( ProcessingsOnPart.Rotation[nRotation+nOffsetIndex][nProc].NotClampableLength.dNotClampableLengthTail, dMaxNotClampableLengthTail)
end