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

0027269: Intersection algorithm produces null-length curve

Restriction line can correspond to a degenerated edge. In this case we shall return null-curve (instead of Null-length curve).
This commit is contained in:
nbv 2016-04-11 10:38:50 +03:00 committed by bugmaster
parent 246c7a7554
commit b55bd02353
3 changed files with 74 additions and 1 deletions

View File

@ -224,6 +224,37 @@ static void IntersectCurveAndBoundary(const Handle(Geom2d_Curve)& theC2d,
}
}
//=======================================================================
//function : isDegenerated
//purpose : Check if theAHC2d corresponds to a degenerated edge.
//=======================================================================
static Standard_Boolean isDegenerated(const Handle(GeomAdaptor_HSurface)& theGAHS,
const Handle(Adaptor2d_HCurve2d)& theAHC2d,
const Standard_Real theFirstPar,
const Standard_Real theLastPar)
{
const Standard_Real aSqTol = Precision::Confusion()*Precision::Confusion();
gp_Pnt2d aP2d;
gp_Pnt aP1, aP2;
theAHC2d->D0(theFirstPar, aP2d);
theGAHS->D0(aP2d.X(), aP2d.Y(), aP1);
theAHC2d->D0(theLastPar, aP2d);
theGAHS->D0(aP2d.X(), aP2d.Y(), aP2);
if(aP1.SquareDistance(aP2) > aSqTol)
return Standard_False;
theAHC2d->D0(0.5*(theFirstPar+theLastPar), aP2d);
theGAHS->D0(aP2d.X(), aP2d.Y(), aP2);
if(aP1.SquareDistance(aP2) > aSqTol)
return Standard_False;
return Standard_True;
}
//=======================================================================
//function : MakeCurve
//purpose :
@ -1117,6 +1148,12 @@ void GeomInt_IntSS::TreatRLine(const Handle(IntPatch_RLine)& theRL,
{
return;
}
//Restriction line can correspond to a degenerated edge.
//In this case we return null-curve.
if(isDegenerated(aGAHS, anAHC2d, tf, tl))
return;
//
//To provide sameparameter it is necessary to get 3d curve as
//approximation of curve on surface.

View File

@ -0,0 +1,36 @@
puts "============"
puts "OCC27269"
puts "============"
puts ""
###############################
## Intersection algorithm produces null-length curve
###############################
restore [locate_data_file bug27267_cmpd.brep] a
explode a f
#############################
set log [bopcurves a_1 a_7 -2d]
#############################
regexp {Tolerance Reached=+([-0-9.+eE]+)\n+([-0-9.+eE]+)} ${log} full Toler NbCurv
for {set i 1} {$i <= ${NbCurv}} {incr i} {
bounds c_$i U1 U2
dump U1 U2
if {[dval U2-U1] < 1.0e-20} {
puts "Error: Wrong curve's range!"
}
set le [length c_$i]
regexp "The length c_$i is +(\[-0-9.+eE\]+)" ${le} full ll
if { $ll < 1.0e-7 } {
puts "Error: Curve c_$i is too small!"
}
}

View File

@ -1,4 +1,4 @@
puts "============"
puts "============"
puts "OCC27325"
puts "============"
puts ""