EgtMachKernel 2.1j1 :

- aggiunta gestione richiesta diametro portautensile.
This commit is contained in:
Dario Sassi
2019-10-07 06:43:26 +00:00
parent 4ba8180d25
commit 0cbd07fe4a
5 changed files with 50 additions and 0 deletions
+12
View File
@@ -263,6 +263,18 @@ MachMgr::TdbGetCurrToolMaxDepth( double& dMaxDepth) const
return pTsMgr->GetCurrToolMaxDepth( dSafe, dMaxDepth) ;
}
//----------------------------------------------------------------------------
bool
MachMgr::TdbGetCurrToolThDiam( double& dThDiam) const
{
// recupero il gestore di utensili della macchina corrente
ToolsMgr* pTsMgr = GetCurrToolsMgr() ;
if ( pTsMgr == nullptr)
return false ;
// recupero il diametro del portautensili
return pTsMgr->GetCurrToolThDiam( dThDiam) ;
}
//----------------------------------------------------------------------------
int
MachMgr::TdbCurrToolDraw( int nGenCtx, int nToolCtx) const