EgtMachKernel 1.9c4 :

- aggiunta gestione versore Correzione e Aux a Milling
- migliorato controllo punto di attacco fuori dal grezzo con gestione speciale per lame.
This commit is contained in:
Dario Sassi
2018-03-22 19:57:23 +00:00
parent 0873ef8318
commit 73e8c8f0bd
8 changed files with 171 additions and 31 deletions
+12
View File
@@ -70,6 +70,18 @@ Machine::GetHeadExitPosDirAux( const string& sHead, int nExit, Point3d& ptPos, V
return true ;
}
//----------------------------------------------------------------------------
int
Machine::GetHeadSolCh( const string& sHead) const
{
// recupero testa
Head* pHead = GetHead( GetGroup( sHead)) ;
if ( pHead == nullptr)
return MCH_SCC_NONE ;
// recupero criterio di soluzione associato alla testa
return pHead->GetSolCh() ;
}
//----------------------------------------------------------------------------
bool
Machine::LoadTool( const string& sHead, int nExit, const string& sTool)