EgtExecutor :

- aggiunte funzioni ExeBeamShowFacesName e ExeBeamShowLoadingSide.
This commit is contained in:
DarioS
2022-11-08 16:42:07 +01:00
parent 3c0d89e3ab
commit 0a7369bfcc
+20
View File
@@ -148,6 +148,26 @@ ExeBeamGetSideData( int nSide, Frame3d& frRef, double& dLength, double& dWidth,
return pBeamMgr->GetSideData( nSide, frRef, dLength, dWidth, dHeight) ;
}
//-----------------------------------------------------------------------------
bool
ExeBeamShowFacesName( bool bShow)
{
IBeamMgr* pBeamMgr = GetCurrBeamMgr() ;
VERIFY_BEAMMGR( pBeamMgr, false)
// imposto la visualizzazione delle facce sul pezzo corrente
return pBeamMgr->ShowFacesName( bShow) ;
}
//-----------------------------------------------------------------------------
bool
ExeBeamShowLoadingSide( bool bShow, bool bFromLeft)
{
IBeamMgr* pBeamMgr = GetCurrBeamMgr() ;
VERIFY_BEAMMGR( pBeamMgr, false)
// imposto la visualizzazione del lato di carico sotto il pezzo corrente
return pBeamMgr->ShowLoadingSide( bShow, bFromLeft) ;
}
//-----------------------------------------------------------------------------
int
ExeBeamAddProcess( int nGroup, int nProc, int nSide, const string& sDes, int nProcId,