From 0d1536ad4e3dcfbc361306ece456eba2635bcee6 Mon Sep 17 00:00:00 2001 From: aml Date: Mon, 8 Feb 2016 11:39:54 +0300 Subject: [PATCH] 0027133: Incorrect result of the normal projection algorithm Topological tolerances changed to geometric tolerances. Protection from the usage of invalid result is added to restore good projection. Test cases are updated. Test case added. Correction of test case for issue CR27133 --- src/ProjLib/ProjLib_CompProjectedCurve.cxx | 12 ++++++++--- tests/bugs/moddata_2/bug453_3 | 11 +++++++++++ tests/bugs/moddata_3/bug23703 | 4 ++++ tests/bugs/moddata_3/bug27133 | 23 ++++++++++++++++++++++ 4 files changed, 47 insertions(+), 3 deletions(-) create mode 100644 tests/bugs/moddata_3/bug27133 diff --git a/src/ProjLib/ProjLib_CompProjectedCurve.cxx b/src/ProjLib/ProjLib_CompProjectedCurve.cxx index cca8a61275..d3216c64e5 100644 --- a/src/ProjLib/ProjLib_CompProjectedCurve.cxx +++ b/src/ProjLib/ProjLib_CompProjectedCurve.cxx @@ -621,7 +621,7 @@ void ProjLib_CompProjectedCurve::Init() gp_Pnt Triple, prevTriple; - //Basic loop + //Basic loop while(t <= LastU) { // Search for the beginning of a new continuous part @@ -670,7 +670,8 @@ void ProjLib_CompProjectedCurve::Init() #ifdef OCCT_DEBUG_CHRONO InitChron(chr_init_point); #endif - initpoint=InitialPoint(CPoint, t,myCurve,mySurface, myTolU, myTolV, U, V); + // PConfusion - use geometric tolerances in extrema / optimization. + initpoint=InitialPoint(CPoint, t,myCurve,mySurface, Precision::PConfusion(), Precision::PConfusion(), U, V); #ifdef OCCT_DEBUG_CHRONO ResultChron(chr_init_point,t_init_point); init_point_count++; @@ -1645,7 +1646,12 @@ void ProjLib_CompProjectedCurve::UpdateTripleByTrapCriteria(gp_Pnt &thePoint) co return; Standard_Real U,V; - InitialPoint(myCurve->Value(thePoint.X()), thePoint.X(), myCurve, mySurface, myTolU, myTolV, U, V); + Standard_Boolean isDone = + InitialPoint(myCurve->Value(thePoint.X()), thePoint.X(), myCurve, mySurface, + Precision::PConfusion(), Precision::PConfusion(), U, V); + + if (!isDone) + return; // Restore original position in case of period jump. if (mySurface->IsUPeriodic() && diff --git a/tests/bugs/moddata_2/bug453_3 b/tests/bugs/moddata_2/bug453_3 index f786f30b74..9445f94b93 100755 --- a/tests/bugs/moddata_2/bug453_3 +++ b/tests/bugs/moddata_2/bug453_3 @@ -1,5 +1,7 @@ puts "TODO OCC24156 MacOS: Tcl Exception: tolerance ang" puts "TODO OCC24156 MacOS: TEST INCOMPLETE" +puts "TODO OCC27203 ALL: Error: Max tolerance" +puts "TODO OCC27203 Linux: Error : The area of result shape is" puts "========" puts "OCC453" @@ -25,6 +27,8 @@ explode result So tcopy result_1 result dchrono h2 stop + +# Check computation time set q2 [ dchrono h2 show ] regexp {CPU user time: ([-0-9.+eE]+) seconds} $q2 full z2 puts "$z2" @@ -34,5 +38,12 @@ if { $z2 > 85 } { puts "Elapsed time is less then 85 seconds - OK" } +# Properties check +checkprops result -s 5.48216e+006 + +# Tolerance check +checkmaxtol result -ref 1628.2217761833963 + +# Visual check checkview -display result -2d -path ${imagedir}/${test_image}.png diff --git a/tests/bugs/moddata_3/bug23703 b/tests/bugs/moddata_3/bug23703 index 2328f354f8..43d32248ec 100644 --- a/tests/bugs/moddata_3/bug23703 +++ b/tests/bugs/moddata_3/bug23703 @@ -14,6 +14,10 @@ pcurve f project c2d c s +# Length check +checklength c2d -l 6.2831853071795862 + +# Visual Check v2d 2dfit diff --git a/tests/bugs/moddata_3/bug27133 b/tests/bugs/moddata_3/bug27133 new file mode 100644 index 0000000000..d988795397 --- /dev/null +++ b/tests/bugs/moddata_3/bug27133 @@ -0,0 +1,23 @@ +puts "================" +puts "0027133" +puts "================" +puts "" +############################################################## +# Incorrect result of the normal projection algorithm +# Oscillation at the edge end +############################################################## + +restore [locate_data_file bug27133_aE.brep] aE +restore [locate_data_file bug27133_aF.brep] aF + +nproject result aE aF + +# Result length check. +checkprops result -l 0.0037337 + +# Visual check. +donly result +smallview +fit +display aE aF +checkview -screenshot -2d -path ${imagedir}/${test_image}.png