EgtExecutor 2.3a3 :

- allineata ExeSurfTmFacetOppositeSideEx a EgtMachKernel
- aggiunte ExeGetCalcHead e ExeGetCalcExit
- ora EgtGetCalcTool restituisce anche testa e uscita.
This commit is contained in:
Dario Sassi
2021-01-14 06:32:52 +00:00
parent acd266b02d
commit de30bede15
4 changed files with 34 additions and 6 deletions
+20
View File
@@ -3043,6 +3043,26 @@ ExeGetCalcTool( string& sTool)
return pMachMgr->GetCalcTool( sTool) ;
}
//-----------------------------------------------------------------------------
bool
ExeGetCalcHead( string& sHead)
{
IMachMgr* pMachMgr = GetCurrMachMgr() ;
VERIFY_MACHMGR( pMachMgr, false)
// restituisco il nome della testa corrente per il calcolo sulla macchina della macchinata corrente
return pMachMgr->GetCalcHead( sHead) ;
}
//-----------------------------------------------------------------------------
bool
ExeGetCalcExit( int& nExit)
{
IMachMgr* pMachMgr = GetCurrMachMgr() ;
VERIFY_MACHMGR( pMachMgr, false)
// restituisco il numero dell'uscita corrente per il calcolo sulla macchina della macchinata corrente
return pMachMgr->GetCalcExit( nExit) ;
}
//-----------------------------------------------------------------------------
bool
ExeGetCalcAngles( const Vector3d& vtDirT, const Vector3d& vtDirA,