From 9dffc0423447d022d53b50238ef5a4be5865bcde Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Mon, 13 Oct 2025 09:48:08 +0200 Subject: [PATCH] EgtInterface : - aggiunta interfaccia per EgtBeamCalcAllSolids e EgtBeamShowAllSolids. --- API_BeamMgr.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/API_BeamMgr.cpp b/API_BeamMgr.cpp index 51891dc..ab27326 100644 --- a/API_BeamMgr.cpp +++ b/API_BeamMgr.cpp @@ -194,6 +194,20 @@ __stdcall EgtBeamEnableProcess( int nGeomId, BOOL bEnable, BOOL bUpdate) return ( ExeBeamEnableProcess( nGeomId, ( bEnable != FALSE), ( bUpdate != FALSE)) ? TRUE : FALSE) ; } +//----------------------------------------------------------------------------- +BOOL +__stdcall EgtBeamCalcAllSolids( BOOL bShow, BOOL bRecalc) +{ + return ( ExeBeamCalcAllSolids( ( bShow != FALSE), ( bRecalc != FALSE)) ? TRUE : FALSE) ; +} + +//----------------------------------------------------------------------------- +BOOL +__stdcall EgtBeamShowAllSolids( BOOL bShow) +{ + return ( ExeBeamShowAllSolids( ( bShow != FALSE)) ? TRUE : FALSE) ; +} + //----------------------------------------------------------------------------- BOOL __stdcall EgtBeamCalcSolid( int nPartId, BOOL bRecalc)