EgtGeomKernel 2.4f3 :

- corretta gestione raggio corner in definizione utensili per virtual milling.
This commit is contained in:
DarioS
2022-06-19 11:09:53 +02:00
parent 4f0a1460fd
commit a5802f0731
3 changed files with 23 additions and 24 deletions
+2 -2
View File
@@ -97,9 +97,9 @@ MyAdjustLoops( ICurve* pCurve, ICURVEPLIST& CrvLst)
sort( vIccInfo.begin(), vIccInfo.end(), SortCrvCrvInfo) ;
// Tolgo le parti da eliminare
for ( int i = 0 ; i < ( int)vIccInfo.size() ; ++ i) {
for ( int i = 0 ; i < int( vIccInfo.size()) ; ++ i) {
if ( i < vIccInfo.size() - 1) {
if ( i < int( vIccInfo.size()) - 1) {
// se anche l'intersezione successiva è overlap che parte dallo stesso punto
if ( vIccInfo[i].bOverlap && vIccInfo[i+1].bOverlap &&
abs( vIccInfo[i].IciA[0].dU - vIccInfo[i+1].IciA[0].dU) < EPS_SMALL &&