diff --git a/src/BRepTest/BRepTest_BasicCommands.cxx b/src/BRepTest/BRepTest_BasicCommands.cxx index 87424fc459..fff1366e35 100644 --- a/src/BRepTest/BRepTest_BasicCommands.cxx +++ b/src/BRepTest/BRepTest_BasicCommands.cxx @@ -38,6 +38,7 @@ #include #include #include +#include #include #include #include @@ -486,46 +487,98 @@ static Standard_Integer optbounding(Draw_Interpretor& di,Standard_Integer n,cons #include #include #include +#include +#include static Standard_Integer gbounding(Draw_Interpretor& di,Standard_Integer n,const char** a) { - if (n < 2) + if (n != 2 && n != 3) { - di << "Usage: gbounding surf/curve \n"; + di << "Usage: gbounding surf/curve/curve2d [-o] \n"; + di << "[-o] turn on Optimal mode ('off' by default) \n"; return 1; } - Standard_Real axmin,aymin,azmin,axmax,aymax,azmax; - Bnd_Box B; Handle(Draw_Box) DB; - - if (n == 2) { + else + { + Standard_Boolean IsOptimal = Standard_False; + if (n == 3 && !strcmp(a[2], "-o")) + IsOptimal = Standard_True; + + Standard_Real axmin,aymin,azmin,axmax,aymax,azmax; + Bnd_Box B; + Bnd_Box2d B2d; + Handle(Draw_Box) DB; + Standard_Boolean Is3d = Standard_True; Handle(Geom_Curve) C; Handle(Geom_Surface) S; + Handle_Geom2d_Curve C2d; S = DrawTrSurf::GetSurface(a[1]); - if (S.IsNull()) - { - C = DrawTrSurf::GetCurve(a[1]); - } - if(!S.IsNull()) + if (!S.IsNull()) { + //add surf GeomAdaptor_Surface aGAS(S); - BndLib_AddSurface::AddOptimal(aGAS, Precision::Confusion(), B); - } - else if(!C.IsNull()) - { - GeomAdaptor_Curve aGAC(C); - BndLib_Add3dCurve::AddOptimal(aGAC, Precision::Confusion(), B); + if (IsOptimal) + BndLib_AddSurface::AddOptimal(aGAS, Precision::Confusion(), B); + else + BndLib_AddSurface::Add(aGAS, Precision::Confusion(), B); } else { - di << "Wrong argument \n"; - return 1; + C = DrawTrSurf::GetCurve(a[1]); + if (!C.IsNull()) + { + // add cur + GeomAdaptor_Curve aGAC(C); + if (IsOptimal) + BndLib_Add3dCurve::AddOptimal(aGAC, Precision::Confusion(), B); + else + BndLib_Add3dCurve::Add(aGAC, Precision::Confusion(), B); + } + else + { + C2d = DrawTrSurf::GetCurve2d(a[1]); + if (!C2d.IsNull()) + { + //add cur2d + Is3d = Standard_False; + if (IsOptimal) + BndLib_Add2dCurve::AddOptimal(C2d, C2d->FirstParameter(), C2d->LastParameter(), Precision::Confusion(), B2d); + else + BndLib_Add2dCurve::Add(C2d, C2d->FirstParameter(), C2d->LastParameter(), Precision::Confusion(), B2d); + } + else + { + di << "Wrong argument \n"; + return 1; + } + } + } + + if (Is3d) + { + B.Get(axmin,aymin,azmin,axmax,aymax,azmax); + DB = new Draw_Box(gp_Pnt(axmin,aymin,azmin),gp_Pnt(axmax,aymax,azmax),Draw_vert); + dout<D0(aT, aP2D); myBox.Add(aP2D); } diff --git a/tests/bugs/moddata_3/bug27890 b/tests/bugs/moddata_3/bug27890 new file mode 100755 index 0000000000..99c5583137 --- /dev/null +++ b/tests/bugs/moddata_3/bug27890 @@ -0,0 +1,34 @@ +puts "============" +puts "CR27890" +puts "===========" +puts "" +############################################################################### +# BndLib_Add2dCurve::Add(..) works incorrect on some curves +############################################################################### + +restore [locate_data_file bug27890_t1.draw] + +set rr [gbounding bug27890_t1] + +regexp { *([-0-9.+eE]+) +([-0-9.+eE]+) +([-0-9.+eE]+) +([-0-9.+eE]+)} $rr full v1_x v1_y v2_x v2_y + +set tol_abs 1.0e-4 +set tol_rel 0.0001 + +set expected_v1_x -34.660696189548446 +checkreal "v1_x" ${v1_x} ${expected_v1_x} ${tol_abs} ${tol_rel} + +set expected_v1_y -69.996521506152177 +checkreal "v1_y" ${v1_y} ${expected_v1_y} ${tol_abs} ${tol_rel} + +set expected_v2_x -15.536166915190313 +checkreal "v2_x" ${v2_x} ${expected_v2_x} ${tol_abs} ${tol_rel} + +set expected_v2_y -21.097502159535235 +checkreal "v2_y" ${v2_y} ${expected_v2_y} ${tol_abs} ${tol_rel} + +#v2d2 +view 1 -2D- 728 20 400 400 + +2dfit +checkview -screenshot -2d -path ${imagedir}/${test_image}.png