EgtExecutor 1.8b7 :

- aggiunta funzione Exe e Lua GetRotAxisBlocked.
This commit is contained in:
Dario Sassi
2017-03-02 07:57:17 +00:00
parent 45c2e7a8b1
commit 4ac17ec65b
3 changed files with 35 additions and 0 deletions
+10
View File
@@ -2310,6 +2310,16 @@ ExeSetRotAxisBlock( const string& sAxis, double dVal)
return pMachMgr->SetRotAxisBlock( sAxis, dVal) ;
}
//----------------------------------------------------------------------------
bool
ExeGetRotAxisBlocked( int nInd, string& sAxis, double& dVal)
{
IMachMgr* pMachMgr = GetCurrMachMgr() ;
VERIFY_MACHMGR( pMachMgr, false)
// recupero dati bloccaggio asse in posizione nInd (0-based)
return pMachMgr->GetRotAxisBlocked( nInd, sAxis, dVal) ;
}
//-----------------------------------------------------------------------------
bool
ExeGetCalcTool( string& sTool)