1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0025254: Protection on null pcurves in tgtfaces BRepLib

Check is pcurves are present is implemented.
This commit is contained in:
pdn 2014-09-22 17:36:31 +04:00 committed by bugmaster
parent 5792217118
commit 4f93349381

View File

@ -1484,6 +1484,16 @@ static Standard_Boolean tgtfaces(const TopoDS_Edge& Ed,
const Standard_Real ta,
const Standard_Boolean couture)
{
// Check if pcurves exist on both faces of edge
Standard_Real aFirst,aLast;
Handle(Geom2d_Curve) aCurve;
aCurve = BRep_Tool::CurveOnSurface(Ed,F1,aFirst,aLast);
if(aCurve.IsNull())
return Standard_False;
aCurve = BRep_Tool::CurveOnSurface(Ed,F2,aFirst,aLast);
if(aCurve.IsNull())
return Standard_False;
Standard_Real u;
TopoDS_Edge E = Ed;
BRepAdaptor_Surface aBAS1(F1,Standard_False);