From d2388a818c82d474a87040912333c3ac89f3e484 Mon Sep 17 00:00:00 2001 From: jgv Date: Thu, 21 Aug 2014 19:02:28 +0400 Subject: [PATCH] 0024959: GCPnts_TangentialDeflection does not implement functionality by its meaning in case of BSpline with local splash In GCPnts_TangetialDeflection curve divided in C_N intervals on which sample points (still 3) is computed. Test cases for issue CR24959 --- src/GCPnts/GCPnts_TangentialDeflection.gxx | 69 ++++++++++++++++------ tests/bugs/moddata_3/bug24959_1 | 28 +++++++++ tests/bugs/moddata_3/bug24959_2 | 29 +++++++++ 3 files changed, 107 insertions(+), 19 deletions(-) create mode 100644 tests/bugs/moddata_3/bug24959_1 create mode 100644 tests/bugs/moddata_3/bug24959_2 diff --git a/src/GCPnts/GCPnts_TangentialDeflection.gxx b/src/GCPnts/GCPnts_TangentialDeflection.gxx index 5cf77e3713..ec58692088 100644 --- a/src/GCPnts/GCPnts_TangentialDeflection.gxx +++ b/src/GCPnts/GCPnts_TangentialDeflection.gxx @@ -21,6 +21,7 @@ #include #include #include +#include #define Us3 0.3333333333333333333333333333 @@ -244,7 +245,7 @@ void GCPnts_TangentialDeflection::PerformCircular (const TheCurve& C) void GCPnts_TangentialDeflection::PerformCurve (const TheCurve& C) { - Standard_Integer i; + Standard_Integer i, j; gp_XYZ V1, V2; gp_Pnt MiddlePoint, CurrentPoint, LastPoint; Standard_Real Du, Dusave, MiddleU, L1, L2; @@ -274,26 +275,55 @@ void GCPnts_TangentialDeflection::PerformCurve (const TheCurve& C) Standard_Boolean IsLine = Standard_True; Standard_Integer NbPoints = 3; if (minNbPnts > 3) NbPoints = minNbPnts; - Du = (lastu-firstu)/NbPoints; - MiddleU = firstu + Du; - for (i = 2; i < NbPoints; i++) { - D0 (C, MiddleU, MiddlePoint); - V2 = MiddlePoint.XYZ(); - V2.Subtract (CurrentPoint.XYZ()); - L2 = V2.Modulus (); - if (L2 > LTol) { - if (((V2.CrossMagnitude (V1))/(L1*L2)) >= ATol) { - //C'etait une singularite - IsLine = Standard_False; - break; - } - if (minNbPnts > 2) { - parameters.Append (MiddleU); - points .Append (MiddlePoint); + //// + Standard_Integer NbInterv = const_cast(&C)->NbIntervals(GeomAbs_CN); + TColStd_Array1OfReal Intervs(1, NbInterv+1); + const_cast(&C)->Intervals(Intervs, GeomAbs_CN); + Standard_Real param = 0.; + for (i = 1; i <= NbInterv; i++) + { + // Avoid usage intervals out of [firstu, lastu]. + if ((Intervs(i+1) < firstu) || + (Intervs(i) > lastu)) + { + continue; + } + // Fix border points in applicable intervals, to avoid be out of target interval. + if ((Intervs(i) < firstu) && + (Intervs(i+1) > firstu)) + { + Intervs(i) = firstu; + } + if ((Intervs(i) < lastu) && + (Intervs(i+1) > lastu)) + { + Intervs(i + 1) = lastu; + } + + Standard_Real delta = (Intervs(i+1) - Intervs(i))/NbPoints; + for (j = 1; j <= NbPoints; j++) + { + param = Intervs(i) + j*delta; + D0 (C, param, MiddlePoint); + V2 = MiddlePoint.XYZ(); + V2.Subtract (CurrentPoint.XYZ()); + L2 = V2.Modulus (); + if (L2 > LTol) { + if (((V2.CrossMagnitude (V1))/(L1*L2)) >= ATol) { + //C'etait une singularite + IsLine = Standard_False; + break; + } + if (minNbPnts > 2) { + parameters.Append (param); + points .Append (MiddlePoint); + } } } - MiddleU += Du; + if (!IsLine) + break; } + //// if (IsLine) { //C'etait une droite (plusieurs poles alignes), Calcul termine : parameters.Append (lastu); @@ -308,7 +338,8 @@ void GCPnts_TangentialDeflection::PerformCurve (const TheCurve& C) parameters.Remove (i); pointsLength--; } - Du = Dusave; + //Du = Dusave; + EvaluateDu (C, param, MiddlePoint, Du, NotDone); } } else { diff --git a/tests/bugs/moddata_3/bug24959_1 b/tests/bugs/moddata_3/bug24959_1 new file mode 100644 index 0000000000..19bb9ab19f --- /dev/null +++ b/tests/bugs/moddata_3/bug24959_1 @@ -0,0 +1,28 @@ +puts "========" +puts "OCC24959" +puts "========" +puts "" +#################################################### +## GCPnts_TangentialDeflection does not implement functionality by its meaning in case of BSpline with local splash +#################################################### + +bsplinesurf s 2 4 0.0 3 0.34 1 0.67 1 1.0 3 1 2 0.0 2 1.0 2 10 0 0 1 6 0 0 1 4 0 0 1 2 0 0 1 0 0 0 1 10 5 0 1 6 5 0 1 4 5 0 1 1.5 9 0 1 0 5 0 1 +mkface result s +incmesh result 1 +set tri_info [trinfo result] + +set tri 0 +set nod 0 +regexp { +([-0-9.+eE]+) +triangles} $tri_info full tri +regexp { +([-0-9.+eE]+) +nodes} $tri_info full nod +if { ${tri} < 90 || ${nod} < 54 } { + puts "Error: Bad meshing" +} else { + puts "OK: Good meshing" +} + +vdisplay result +vsetdispmode 1 +vtop +vfit +set only_screen 1 diff --git a/tests/bugs/moddata_3/bug24959_2 b/tests/bugs/moddata_3/bug24959_2 new file mode 100644 index 0000000000..05e9798c67 --- /dev/null +++ b/tests/bugs/moddata_3/bug24959_2 @@ -0,0 +1,29 @@ +puts "========" +puts "OCC24959" +puts "========" +puts "" +#################################################### +## GCPnts_TangentialDeflection does not implement functionality by its meaning in case of BSpline with local splash +#################################################### + +bsplinesurf s 2 12 0.0 3 0.1 1 0.2 1 0.3 1 0.4 1 0.5 1 0.525 1 0.55 1 0.575 1 0.8 1 0.9 1 1.0 3 1 2 0.0 2 1.0 2 16 0 0 1 14 0 0 1 12 0 0 1 10 0 0 1 8 0 0 1 6 0 0 1 4 0 0 1 2 0 0 1 0 0 0 1 -2 0 0 1 -4 0 0 1 -6 0 0 1 -8 0 0 1 16 5 0 1 14 5 0 1 12 5 0 1 10 5 0 1 8 5 0 1 6 5 0 1 4 5 0 1 1.5 9 0 1 0 5 0 1 -2 5 0 1 -4 5 0 1 -6 5 0 1 -8 5 0 1 + +mkface result s +incmesh result 1 +set tri_info [trinfo result] + +set tri 0 +set nod 0 +regexp { +([-0-9.+eE]+) +triangles} $tri_info full tri +regexp { +([-0-9.+eE]+) +nodes} $tri_info full nod +if { ${tri} < 76 || ${nod} < 50 } { + puts "Error: Bad meshing" +} else { + puts "OK: Good meshing" +} + +vdisplay result +vsetdispmode 1 +vtop +vfit +set only_screen 1