From a874a4a0761fe772d1db73b269a89fad9dec4341 Mon Sep 17 00:00:00 2001 From: gka Date: Thu, 10 Apr 2014 15:45:18 +0400 Subject: [PATCH] 0024800: Point of intersection was not found for 2d offset curve. For fix this case in method Geom2dInt_Geom2dCurveTool::NBSamples() number of samples for 2d offset and trimmed curve is computed as max value from number of samples for other curve and number of samples for basis curve. Test case for issue CR24800 --- src/Adaptor2d/Adaptor2d_Curve2d.cdl | 3 +- src/Adaptor2d/Adaptor2d_Curve2d.cxx | 9 +++- src/Geom2dAdaptor/Geom2dAdaptor_Curve.cdl | 2 +- src/Geom2dAdaptor/Geom2dAdaptor_Curve.cxx | 37 ++++++++++++++++ src/Geom2dInt/Geom2dInt_Geom2dCurveTool.cxx | 48 +++++---------------- tests/bugs/moddata_3/bug24800 | 22 ++++++++++ 6 files changed, 81 insertions(+), 40 deletions(-) create mode 100755 tests/bugs/moddata_3/bug24800 diff --git a/src/Adaptor2d/Adaptor2d_Curve2d.cdl b/src/Adaptor2d/Adaptor2d_Curve2d.cdl index 9e26761343..ec83a3870d 100644 --- a/src/Adaptor2d/Adaptor2d_Curve2d.cdl +++ b/src/Adaptor2d/Adaptor2d_Curve2d.cdl @@ -218,7 +218,8 @@ is NoSuchObject from Standard is virtual; - + NbSamples(me) returns Integer from Standard is virtual; + Bezier(me) returns BezierCurve from Geom2d raises NoSuchObject from Standard diff --git a/src/Adaptor2d/Adaptor2d_Curve2d.cxx b/src/Adaptor2d/Adaptor2d_Curve2d.cxx index 6b6589cb67..7a0a83e014 100644 --- a/src/Adaptor2d/Adaptor2d_Curve2d.cxx +++ b/src/Adaptor2d/Adaptor2d_Curve2d.cxx @@ -373,5 +373,12 @@ Handle(Geom2d_BSplineCurve) Adaptor2d_Curve2d::BSpline() const return Handle(Geom2d_BSplineCurve)(); } - +//======================================================================= +//function : NbSamples +//purpose : +//======================================================================= +Standard_Integer Adaptor2d_Curve2d::NbSamples() const +{ + return 20; +} diff --git a/src/Geom2dAdaptor/Geom2dAdaptor_Curve.cdl b/src/Geom2dAdaptor/Geom2dAdaptor_Curve.cdl index c34f012082..b53c131f67 100644 --- a/src/Geom2dAdaptor/Geom2dAdaptor_Curve.cdl +++ b/src/Geom2dAdaptor/Geom2dAdaptor_Curve.cdl @@ -226,7 +226,7 @@ is NoSuchObject from Standard is redefined static; - + NbSamples(me) returns Integer from Standard is redefined; Bezier(me) returns BezierCurve from Geom2d raises diff --git a/src/Geom2dAdaptor/Geom2dAdaptor_Curve.cxx b/src/Geom2dAdaptor/Geom2dAdaptor_Curve.cxx index b538739d87..56ca5099a9 100644 --- a/src/Geom2dAdaptor/Geom2dAdaptor_Curve.cxx +++ b/src/Geom2dAdaptor/Geom2dAdaptor_Curve.cxx @@ -860,3 +860,40 @@ Handle(Geom2d_BSplineCurve) Geom2dAdaptor_Curve::BSpline() const return *((Handle(Geom2d_BSplineCurve)*)&myCurve); } +static Standard_Integer nbPoints(const Handle(Geom2d_Curve)& theCurve) +{ + + Standard_Integer nbs = 10; + + if(theCurve->IsKind(STANDARD_TYPE( Geom2d_Line)) ) + nbs = 2; + else if(theCurve->IsKind(STANDARD_TYPE( Geom2d_BezierCurve))) + { + nbs = 3 + (*((Handle(Geom2d_BezierCurve)*)&theCurve))->NbPoles(); + } + else if(theCurve->IsKind(STANDARD_TYPE( Geom2d_BSplineCurve))) { + nbs = (*((Handle(Geom2d_BSplineCurve)*)&theCurve))->NbKnots(); + nbs*= (*((Handle(Geom2d_BSplineCurve)*)&theCurve))->Degree(); + if(nbs < 2.0) nbs=2; + } + else if (theCurve->IsKind(STANDARD_TYPE(Geom2d_OffsetCurve))) + { + Handle(Geom2d_Curve) aCurve = (*((Handle(Geom2d_OffsetCurve)*)&theCurve))->BasisCurve(); + return Max(nbs, nbPoints(aCurve)); + } + + else if (theCurve->IsKind(STANDARD_TYPE(Geom2d_TrimmedCurve))) + { + Handle(Geom2d_Curve) aCurve = (*((Handle(Geom2d_TrimmedCurve)*)&theCurve))->BasisCurve(); + return Max(nbs, nbPoints(aCurve)); + } + if(nbs>300) + nbs = 300; + return nbs; + +} + +Standard_Integer Geom2dAdaptor_Curve::NbSamples() const +{ + return nbPoints(myCurve); +} diff --git a/src/Geom2dInt/Geom2dInt_Geom2dCurveTool.cxx b/src/Geom2dInt/Geom2dInt_Geom2dCurveTool.cxx index 5c1633ac73..8e7c84c149 100644 --- a/src/Geom2dInt/Geom2dInt_Geom2dCurveTool.cxx +++ b/src/Geom2dInt/Geom2dInt_Geom2dCurveTool.cxx @@ -26,58 +26,32 @@ //============================================================ Standard_Integer Geom2dInt_Geom2dCurveTool::NbSamples (const Adaptor2d_Curve2d& C, - const Standard_Real U0, - const Standard_Real U1) { + const Standard_Real U0, + const Standard_Real U1) +{ GeomAbs_CurveType typC = C.GetType(); - static Standard_Real nbsOther = 10.0; - Standard_Real nbs = nbsOther; + Standard_Integer nbs = C.NbSamples(); - if(typC == GeomAbs_Line) - nbs = 2; - else if(typC == GeomAbs_BezierCurve) - nbs = 3 + C.NbPoles(); - else if(typC == GeomAbs_BSplineCurve) { + if(typC == GeomAbs_BSplineCurve) { Standard_Real t=C.LastParameter()-C.FirstParameter(); Standard_Real t1=U1-U0; if(t1<0.0) t1=-t1; nbs = C.NbKnots(); nbs*= C.Degree(); - nbs*= (t1/t); + Standard_Real anb = t1/t * nbs; + nbs = (Standard_Integer)anb; if(nbs < 4.0) nbs=4; } - //// modified by jgv, 20.02.02 for bug OCC165 //// - else if (typC == GeomAbs_OtherCurve) - nbs = 20; - ////////////////////////////////////////////////// if(nbs>300) nbs = 300; - return((Standard_Integer)nbs); + return nbs; + } //============================================================ Standard_Integer Geom2dInt_Geom2dCurveTool::NbSamples (const Adaptor2d_Curve2d& C) { - GeomAbs_CurveType typC = C.GetType(); - static Standard_Real nbsOther = 10.0; - Standard_Real nbs = nbsOther; - - if(typC == GeomAbs_Line) - nbs = 2; - else if(typC == GeomAbs_BezierCurve) - nbs = 3 + C.NbPoles(); - else if(typC == GeomAbs_BSplineCurve) { - nbs = C.NbKnots(); - nbs*= C.Degree(); - if(nbs < 2.0) nbs=2; - } - //// modified by jgv, 20.02.02 for bug OCC165 //// - else if (typC == GeomAbs_OtherCurve) - nbs = 20; - ////////////////////////////////////////////////// - - if(nbs>300) - nbs = 300; - return((Standard_Integer)nbs); -} + return C.NbSamples(); + } diff --git a/tests/bugs/moddata_3/bug24800 b/tests/bugs/moddata_3/bug24800 new file mode 100755 index 0000000000..7c2677d29c --- /dev/null +++ b/tests/bugs/moddata_3/bug24800 @@ -0,0 +1,22 @@ +puts "============" +puts "CR24800" +puts "===========" +puts "" +############################################################################### +# Point of intersection was not found for 2d offset curve. +############################################################################### + +restore [locate_data_file bug24800_curve2.brep] c2 + +set inter1 [2dintersect c2] + +set int1 [regexp {Intersection point 1} ${inter1}] + +if { ${int1} == 0 } { + puts "Error : Intersection is not found" +} + +av2d +2dfit + +xwd ${imagedir}/${test_image}.png