EgtInterface :

- aggiunta interfaccia per EgtBeamCalcAllSolids e EgtBeamShowAllSolids.
This commit is contained in:
Dario Sassi
2025-10-13 09:48:08 +02:00
parent a52a9c5edb
commit 9dffc04234
+14
View File
@@ -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)