From b89b1e08165bb05f04866f38bf63f3b335f8545c Mon Sep 17 00:00:00 2001 From: nbv Date: Thu, 25 Sep 2014 15:24:55 +0400 Subject: [PATCH] 0025248: Curve-Surface intersection algorithm raises exception All necessary comments are into the program code. Test case for issue CR25248 --- src/Intf/Intf_Tool.cdl | 3 + src/Intf/Intf_Tool.cxx | 225 ++++++++++++++++++++--------------- tests/bugs/modalg_5/bug25248 | 12 ++ 3 files changed, 142 insertions(+), 98 deletions(-) create mode 100755 tests/bugs/modalg_5/bug25248 diff --git a/src/Intf/Intf_Tool.cdl b/src/Intf/Intf_Tool.cdl index d42d9ee6b1..b1c1ec5d9f 100644 --- a/src/Intf/Intf_Tool.cdl +++ b/src/Intf/Intf_Tool.cdl @@ -115,7 +115,10 @@ is Create returns Tool from Intf; fields nbSeg : Integer from Standard; beginOnCurve : Real from Standard [6]; endOnCurve : Real from Standard [6]; + + -- Code of every side of BndBox. bord : Integer from Standard [12]; + xint : Real from Standard [12]; yint : Real from Standard [12]; zint : Real from Standard [12]; diff --git a/src/Intf/Intf_Tool.cxx b/src/Intf/Intf_Tool.cxx index 4746a5a823..f96252ca5a 100644 --- a/src/Intf/Intf_Tool.cxx +++ b/src/Intf/Intf_Tool.cxx @@ -726,25 +726,6 @@ void Intf_Tool::HyprBox(const gp_Hypr& theHypr, } boxHypr.Update(Xmin, Ymin, Zmin, Xmax, Ymax, Zmax); // - Standard_Integer npj, npk; - Standard_Real parmin; - for (npi=0; npi 0 ; i--) + { + for(Standard_Integer j = 0; j < i; j++) + { + if(parint[i] <= parint[j]) + { + Standard_Real aTemp = parint[i]; + parint[i] = parint[j]; + parint[j] = aTemp; + + aTemp = zint[i]; + zint[i] = zint[j]; + zint[j] = aTemp; + + aTemp = yint[i]; + yint[i] = yint[j]; + yint[j] = aTemp; + + aTemp = xint[i]; + xint[i] = xint[j]; + xint[j] = aTemp; + + aTemp = bord[i]; + bord[i] = bord[j]; + bord[j] = RealToInt(aTemp); + } + + if((i < nbpi - 1) && IsEqual(parint[i], parint[i+1])) + { + for(Standard_Integer k = i + 1; k < aNbDiffPoints; k++) + { + parint[k-1] = parint[k]; + zint[k-1] = zint[k]; + yint[k-1] = yint[k]; + xint[k-1] = xint[k]; + bord[k-1] = bord[k]; + } + + aNbDiffPoints--; + } + } + } + + return aNbDiffPoints; } diff --git a/tests/bugs/modalg_5/bug25248 b/tests/bugs/modalg_5/bug25248 new file mode 100755 index 0000000000..1d924cfbc6 --- /dev/null +++ b/tests/bugs/modalg_5/bug25248 @@ -0,0 +1,12 @@ +puts "=========" +puts "CR25248" +puts "=========" +puts "" +############################### +## Curve-Surface intersection algorithm raises exception +############################### + +restore [locate_data_file bug25248_c.draw] c +restore [locate_data_file bug25111_s2.draw] s + +intersect i c s