EgtMachKernel 1.9i1 :

- aggiunta in interfaccia funzione GetAxisInvert.
This commit is contained in:
Dario Sassi
2018-09-11 18:35:54 +00:00
parent 2e5842d4d4
commit 3016bcf90b
4 changed files with 11 additions and 1 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ Machine::GetAxisInvert( const string& sAxis, bool& bInvert) const
Axis* pAx = GetAxis( GetGroup( sAxis)) ;
if ( pAx == nullptr)
return false ;
// recupero il flag di inversione dell'asse
// recupero il flag di inversione dell'asse in visualizzazione
bInvert = pAx->GetInvert() ;
return true ;
}