EgtMachKernel :

- nel calcolo degli assi macchina su percorsi ora si infittiscono opportunamente i punti quando necessario a 5 assi.
This commit is contained in:
Dario Sassi
2024-05-22 08:20:56 +02:00
parent 9c38fcd015
commit 171c473e5b
5 changed files with 386 additions and 189 deletions
+11
View File
@@ -964,3 +964,14 @@ GenMachining::VerifyGeometry( SelData Id, int& nSubs, int& nType)
else
return false ;
}
//----------------------------------------------------------------------------
double
GenMachining::GetApproxLinTol( void) const
{
double dLinTol ;
if ( GetValInNotes( m_Params.m_sUserNotes, "LinTol", dLinTol))
return dLinTol ;
else
return Operation::GetApproxLinTol() ;
}