EgtMachKernel 1.6k9 :

- aggiunti campi Rot2Stroke e SolCh a teste per limitare corse secondo asse rotante e dare criterio scelta soluzione
- utilizzo di questi dati nel calcolo assi macchina
- aggiunta GetCurrMachineName.
This commit is contained in:
Dario Sassi
2015-11-24 22:13:21 +00:00
parent 2f016585bb
commit ebccd64daa
11 changed files with 143 additions and 26 deletions
+10
View File
@@ -90,6 +90,16 @@ MachMgr::SetCurrMachine( const string& sMachineName)
return true ;
}
//----------------------------------------------------------------------------
bool
MachMgr::GetCurrMachineName( string& sMachineName) const
{
if ( GetCurrMachine() == nullptr)
return false ;
sMachineName = GetCurrMachine()->GetMachineName() ;
return true ;
}
//----------------------------------------------------------------------------
int
MachMgr::GetCurrMGeoId( void) const