1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0029679: Draw Harness - Command 2dapprox works wrong when giving points in command line

Correct the behavior of the command 2dapprox for the case of points input in the command line.
Restore the work of the command 2dinterpole (implemented in the same method as 2dapprox).
Add test cases.
Correct generation of snapshots for the tests lowalgos/2dinter/*.
This commit is contained in:
msv 2019-06-21 20:35:30 +03:00 committed by apn
parent 0c33a0bf4d
commit 64a4475285
9 changed files with 80 additions and 21 deletions

View File

@ -5595,7 +5595,7 @@ Draw provides command to create curves and surfaces by approximation.
* **appro** fits a curve through 3d points; * **appro** fits a curve through 3d points;
* **surfapp** and **grilapp** fit a surface through 3d points by approximation; * **surfapp** and **grilapp** fit a surface through 3d points by approximation;
* **surfint** fit a surface through 3d points by interpolation; * **surfint** fit a surface through 3d points by interpolation;
* **2dinterpolate** interpolates a curve. * **2dinterpole** interpolates a curve.
@subsubsection occt_draw_6_8_1 appro, dapprox @subsubsection occt_draw_6_8_1 appro, dapprox

View File

@ -26,6 +26,7 @@
#include <DrawTrSurf_Curve2d.hxx> #include <DrawTrSurf_Curve2d.hxx>
#include <Geom2dAPI_ProjectPointOnCurve.hxx> #include <Geom2dAPI_ProjectPointOnCurve.hxx>
#include <Geom2dAPI_ExtremaCurveCurve.hxx> #include <Geom2dAPI_ExtremaCurveCurve.hxx>
#include <Geom2dAPI_Interpolate.hxx>
#include <Geom2dAPI_PointsToBSpline.hxx> #include <Geom2dAPI_PointsToBSpline.hxx>
#include <Geom2dAPI_InterCurveCurve.hxx> #include <Geom2dAPI_InterCurveCurve.hxx>
#include <Geom2d_Line.hxx> #include <Geom2d_Line.hxx>
@ -178,7 +179,6 @@ static Standard_Integer appro(Draw_Interpretor& di, Standard_Integer n, const ch
else { else {
// test points ou ordonnees // test points ou ordonnees
hasPoints = Standard_False;
Standard_Integer nc = n - 3; Standard_Integer nc = n - 3;
if (nc == 2 * Nb) { if (nc == 2 * Nb) {
// points // points
@ -190,6 +190,7 @@ static Standard_Integer appro(Draw_Interpretor& di, Standard_Integer n, const ch
} }
else if (nc - 2 == Nb) { else if (nc - 2 == Nb) {
// YValues // YValues
hasPoints = Standard_False;
nc = 5; nc = 5;
X0 = Draw::Atof(a[3]); X0 = Draw::Atof(a[3]);
DX = Draw::Atof(a[4]); DX = Draw::Atof(a[4]);
@ -214,9 +215,44 @@ static Standard_Integer appro(Draw_Interpretor& di, Standard_Integer n, const ch
Handle(Geom2d_BSplineCurve) TheCurve; Handle(Geom2d_BSplineCurve) TheCurve;
if (hasPoints) if (hasPoints)
TheCurve = Geom2dAPI_PointsToBSpline(Points,Dmin,Dmax,GeomAbs_C2,Tol2d); {
if (!strcmp (a[0], "2dinterpole"))
{
Geom2dAPI_Interpolate anInterpol (new TColgp_HArray1OfPnt2d(Points), Standard_False, Tol2d);
anInterpol.Perform();
if (!anInterpol.IsDone())
{
di << "not done";
return 1;
}
TheCurve = anInterpol.Curve();
}
else
{
Geom2dAPI_PointsToBSpline anApprox (Points, Dmin, Dmax, GeomAbs_C2, Tol2d);
if (!anApprox.IsDone())
{
di << "not done";
return 1;
}
TheCurve = anApprox.Curve();
}
}
else else
TheCurve = Geom2dAPI_PointsToBSpline(YValues,X0,DX,Dmin,Dmax,GeomAbs_C2,Tol2d); {
if (!strcmp (a[0], "2dinterpole"))
{
di << "incorrect usage";
return 1;
}
Geom2dAPI_PointsToBSpline anApprox (YValues, X0, DX, Dmin, Dmax, GeomAbs_C2, Tol2d);
if (!anApprox.IsDone())
{
di << "not done";
return 1;
}
TheCurve = anApprox.Curve();
}
DrawTrSurf::Set(a[1], TheCurve); DrawTrSurf::Set(a[1], TheCurve);
di << a[1]; di << a[1];

View File

@ -0,0 +1,12 @@
puts "================"
puts "0029679: Command 2dapprox works wrong when giving points in command line"
puts "================"
puts ""
2dapprox c 5 0 0 3 4 -1 4 -4 0 -4 -3
checklength c -l 18.723980878126035
smallview -2D-
2dfit
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -0,0 +1,12 @@
puts "================"
puts "0029679: Command 2dapprox works wrong when giving points in command line"
puts "================"
puts ""
2dinterpole c 5 0 0 3 4 -1 4 -4 0 -4 -3
checklength c -l 18.236785351873756
smallview -2D-
2dfit
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -30,7 +30,7 @@ if { $int1 == 0 || $int2 == 0 || $int3 == 0 || $int4 ==0 } {
puts "Error : Intersection is not found" puts "Error : Intersection is not found"
} }
av2d smallview -2D-
2dfit 2dfit
xwd ${imagedir}/${test_image}.png xwd ${imagedir}/${test_image}.png

View File

@ -16,7 +16,7 @@ if { ${int1} == 0 } {
puts "Error : Intersection is not found" puts "Error : Intersection is not found"
} }
av2d smallview -2D-
2dfit 2dfit
xwd ${imagedir}/${test_image}.png xwd ${imagedir}/${test_image}.png

View File

@ -6,17 +6,16 @@ puts ""
# Incorrect result of intersection in 2D between circle and line # Incorrect result of intersection in 2D between circle and line
####################################################################################### #######################################################################################
v2d2 smallview -2D-
don
circle c1 2 2 1 circle c1 2 2 1
2dfit 2dfit
2dzoom 120 2dzoom 120
line l1 3 0 0 1 line l1 3 0 0 1
2dintersect l1 c1 2dintersect l1 c1
erase l1 c1 erase l1 c1
2dfit
puts "ATTENTION! Check following:" puts "ATTENTION! Check following:"
puts "There is only one intersection point (green X)" puts "There is only one intersection point (green X)"
checkview -display result -2d -path ${imagedir}/${test_image}.png checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -6,7 +6,7 @@ puts ""
# Incorrect result of intersection in 2D between circle and line # Incorrect result of intersection in 2D between circle and line
####################################################################################### #######################################################################################
v2d2 smallview -2D-
line ll1 0 0 0.3 0.7 line ll1 0 0 0.3 0.7
line ll2 0 0 0.37 0.63 line ll2 0 0 0.37 0.63
trim tll1 ll1 -0.00001 0.00001 trim tll1 ll1 -0.00001 0.00001
@ -18,5 +18,4 @@ donly tll1 tll2
puts "ATTENTION! Check following:" puts "ATTENTION! Check following:"
puts "There is the intersection point (green X) on center of grid axis" puts "There is the intersection point (green X) on center of grid axis"
checkview -display result -2d -path ${imagedir}/${test_image}.png checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,8 +1,9 @@
001 2dinter 001 2dapprox
002 bnd 002 2dinter
003 extcs 003 bnd
004 extcc 004 extcs
005 2dgcc 005 extcc
006 intss 006 2dgcc
007 classifier 007 intss
008 bvh 008 classifier
009 bvh