DataBeam :

- migliorato orientamento braccio FAST su fori perpendicolari asse trave
- migliorato orientamento braccio FAST su svuotature con normale perpendicolare ad asse trave per LapJoint.
This commit is contained in:
Dario Sassi
2020-11-04 07:34:14 +00:00
parent aa0e483456
commit 1adb136219
3 changed files with 42 additions and 29 deletions
+12 -1
View File
@@ -1,7 +1,8 @@
-- BeamLib.lua by Egaltech s.r.l. 2020/10/23
-- BeamLib.lua by Egaltech s.r.l. 2020/11/03
-- Libreria globale per Travi
-- 2020/07/28 Corretto calcolo attacchi e uscite di lame per non uscire dalla faccia sotto.
-- 2020/08/18 Aggiunto a GetNearestParalOpposite e GetNearestOrthoOpposite parametro opzionale vtNorm.
-- 2020/11/03 Aggiunta funzione IsEndOrEnd2Phase.
-- Tabella per definizione modulo
local BeamLib = {}
@@ -896,5 +897,15 @@ function BeamLib.GetNzLimDownUp( b3Raw)
end
end
-------------------------------------------------------------------------------------------------------------
function BeamLib.IsEndOrEnd2Phase( nPhase)
local sVal = BeamLib.GetPhaseType( nPhase)
return ( sVal == 'END' or sVal == 'END2')
end
---------------------------------------------------------------------
function BeamLib.GetPhaseType( nPhase)
return ( EgtGetInfo( EgtGetPhaseDisposition( nPhase) or GDB_ID.NULL, 'TYPE') or '')
end
-------------------------------------------------------------------------------------------------------------
return BeamLib