EgtExecutor 2.2i2 :

- aggiunta gestione BeamMgr
- aggiunte funzioni ExeInitBeamMgr, ExeBeamCalcSolid, ExeBeamGetSolid, ExeBeamShowSolid.
This commit is contained in:
Dario Sassi
2020-09-02 17:47:38 +00:00
parent 6c1c3c3478
commit 5656595353
9 changed files with 120 additions and 5 deletions
+9
View File
@@ -159,6 +159,15 @@ GetCurrMachMgr( void)
return ( s_GseCtx[s_nCurrGseCtx-1].m_pMachMgr) ;
}
//----------------------------------------------------------------------------
IBeamMgr*
GetCurrBeamMgr( void)
{
if ( s_nCurrGseCtx < 1 || s_nCurrGseCtx > MAX_CTX || ! s_GseOn[s_nCurrGseCtx-1])
return nullptr ;
return ( s_GseCtx[s_nCurrGseCtx-1].m_pBeamMgr) ;
}
//----------------------------------------------------------------------------
IEGrScene*
GetCurrScene( void)