EgtMachKernel :

- segnalazione extracorsa ora gestisce l'unità di misura (mm/inch).
This commit is contained in:
Dario Sassi
2017-07-05 07:52:13 +00:00
parent f82307ac0d
commit e87faa62ca
5 changed files with 50 additions and 20 deletions
+3 -3
View File
@@ -630,15 +630,15 @@ MachMgr::VerifyOutstroke( double dX, double dY, double dZ, const DBLVECTOR& vAng
}
//----------------------------------------------------------------------------
const std::string&
MachMgr::GetOutstrokeInfo( void) const
std::string
MachMgr::GetOutstrokeInfo( bool bMM) const
{
Machine* pMch = GetCurrMachine() ;
if ( pMch == nullptr) {
static string sNull = "" ;
return sNull ;
}
return pMch->GetOutstrokeInfo() ;
return pMch->GetOutstrokeInfo( bMM) ;
}
//----------------------------------------------------------------------------