EgtExecutor 1.8d1 :

- aggiunta funzione Exe e Lua GetAxisType.
This commit is contained in:
Dario Sassi
2017-04-13 18:23:39 +00:00
parent e7b887ca13
commit bbf5db64e2
3 changed files with 30 additions and 0 deletions
+10
View File
@@ -2494,6 +2494,16 @@ ExeGetAxisToken( const string& sAxis, string& sToken)
return pMachMgr->GetAxisToken( sAxis, sToken) ;
}
//-----------------------------------------------------------------------------
bool
ExeGetAxisType( const string& sAxis, bool& bLinear)
{
IMachMgr* pMachMgr = GetCurrMachMgr() ;
VERIFY_MACHMGR( pMachMgr, false)
// recupero il tipo dell'asse
return pMachMgr->GetAxisType( sAxis, bLinear) ;
}
//-----------------------------------------------------------------------------
bool
ExeGetAllHeadsNames( STRVECTOR& vNames)