EgtGeomKernel :

- corretto riconoscimento interna/esterna tra curve chiuse che non si intersecano.
This commit is contained in:
DarioS
2023-04-18 19:21:54 +02:00
parent d1790d8f07
commit 13b02f51a3
2 changed files with 2 additions and 5 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ IntersLineLine::IntersInfiniteLines( const ICurveLine& Line1, const ICurveLine&
double dLen1XY = vtDir1.LenXY() ;
if ( dLen1XY < EPS_SMALL)
return ;
// linea 2 : Start, Direzione e Lunghezza
// linea 2 : Start, End, Direzione e Lunghezza
Point3d ptS2 = Line2.GetStart() ;
Point3d ptE2 = Line2.GetEnd() ;
Vector3d vtDir2 = ptE2 - ptS2 ;