1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

Modeling - Degenerated curves were not handled by Arrange function (#396)

This commit is contained in:
Markus Freilinger 2025-03-02 17:47:06 +01:00 committed by GitHub
parent 4556423a04
commit df546f5aca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -46,6 +46,10 @@
// | | // | |
// ----->----- // ----->-----
// CC1 = C1 // CC1 = C1
//
// In case a curve CCx is degenerated to start and end at
// the same point, it is inserted before the curvature leaves
// the point.
//======================================================================= //=======================================================================
static Standard_Boolean Arrange(const Handle(Geom_BSplineCurve)& C1, static Standard_Boolean Arrange(const Handle(Geom_BSplineCurve)& C1,
const Handle(Geom_BSplineCurve)& C2, const Handle(Geom_BSplineCurve)& C2,
@ -70,6 +74,26 @@ static Standard_Boolean Arrange(const Handle(Geom_BSplineCurve)& C1,
for (i = 1; i <= 3; i++) for (i = 1; i <= 3; i++)
{ {
Trouve = Standard_False; Trouve = Standard_False;
// search for a degenerated curve = point, which would match first
for (j = i; j <= 3 && !Trouve; j++)
{
if (GC[j]->StartPoint().Distance(GC[j]->EndPoint()) < Tol)
{
// this is a degenerated line, does it match the last endpoint?
if (GC[j]->StartPoint().Distance(GC[i - 1]->EndPoint()) < Tol)
{
Dummy = GC[i];
GC[i] = GC[j];
GC[j] = Dummy;
Trouve = Standard_True;
}
}
}
// if no degenerated curve matched, try an ordinary one as next curve
if (!Trouve)
{
for (j = i; j <= 3 && !Trouve; j++) for (j = i; j <= 3 && !Trouve; j++)
{ {
if (GC[j]->StartPoint().Distance(GC[i - 1]->EndPoint()) < Tol) if (GC[j]->StartPoint().Distance(GC[i - 1]->EndPoint()) < Tol)
@ -88,9 +112,14 @@ static Standard_Boolean Arrange(const Handle(Geom_BSplineCurve)& C1,
Trouve = Standard_True; Trouve = Standard_True;
} }
} }
}
// if still non matched -> error, the algorithm cannot finish
if (!Trouve) if (!Trouve)
{
return Standard_False; return Standard_False;
} }
}
CC1 = GC[0]; CC1 = GC[0];
CC2 = GC[1]; CC2 = GC[1];