EgtMachKernel 1.8f3 :

- correzioni per approccio/retrazione fresature da sopra.
This commit is contained in:
Dario Sassi
2017-06-22 13:34:12 +00:00
parent a4c7789a91
commit 7aa2675f49
4 changed files with 65 additions and 13 deletions
+10
View File
@@ -233,6 +233,16 @@ MachMgr::GetHeadExitCount( const string& sHead) const
return ( ( pMch != nullptr) ? pMch->GetHeadExitCount( sHead) : 0) ;
}
//----------------------------------------------------------------------------
bool
MachMgr::GetHeadAbove( const string& sHead) const
{
if ( m_pGeomDB == nullptr)
return false ;
bool bAbove = true ;
return ( ! m_pGeomDB->GetInfo( GetHeadId( sHead), "ABOVE", bAbove) || bAbove) ;
}
//----------------------------------------------------------------------------
bool
MachMgr::GetAxisToken( const string& sAxis, string& sToken) const