EgtExecutor 1.9i2 :

- aggiunta a Exe e Lua funzione GetAxisInvert.
This commit is contained in:
Dario Sassi
2018-09-11 18:36:42 +00:00
parent ad77bc80ad
commit 88a7bffe54
3 changed files with 30 additions and 0 deletions
+10
View File
@@ -2813,6 +2813,16 @@ ExeGetAxisType( const string& sAxis, bool& bLinear)
return pMachMgr->GetAxisType( sAxis, bLinear) ;
}
//-----------------------------------------------------------------------------
bool
ExeGetAxisInvert( const string& sAxis, bool& bInvert)
{
IMachMgr* pMachMgr = GetCurrMachMgr() ;
VERIFY_MACHMGR( pMachMgr, false)
// recupero il flag di inversione asse in visualizzazione
return pMachMgr->GetAxisInvert( sAxis, bInvert) ;
}
//-----------------------------------------------------------------------------
bool
ExeGetAllHeadsNames( STRVECTOR& vNames)