From 447c7e54f01923b65f78268831e8fd78c26a703c Mon Sep 17 00:00:00 2001 From: aml Date: Tue, 15 Mar 2016 14:57:15 +0300 Subject: [PATCH] 0027261: Incorrect bounding boxes computed for the b-spline faces Protection from the out of bounds parameters is added. Test cases are added. --- src/BndLib/BndLib_AddSurface.cxx | 5 +++++ tests/bugs/moddata_3/bug27261_1 | 15 +++++++++++++++ tests/bugs/moddata_3/bug27261_2 | 15 +++++++++++++++ 3 files changed, 35 insertions(+) create mode 100644 tests/bugs/moddata_3/bug27261_1 create mode 100644 tests/bugs/moddata_3/bug27261_2 diff --git a/src/BndLib/BndLib_AddSurface.cxx b/src/BndLib/BndLib_AddSurface.cxx index 1b89468679..e2ad6e7380 100644 --- a/src/BndLib/BndLib_AddSurface.cxx +++ b/src/BndLib/BndLib_AddSurface.cxx @@ -195,6 +195,11 @@ void ComputePolesIndexes(const TColStd_Array1OfReal &theFlatKnots, Standard_Integer &theOutMinIdx, Standard_Integer &theOutMaxIdx) { + // Set initial values for the result indexes to handle situation when requested parameter space + // is slightly greater than B-spline parameter space. + theOutMinIdx = theFlatKnots.Lower(); + theOutMaxIdx = theFlatKnots.Upper(); + // Compute first and last used flat knots. for(Standard_Integer aKnotIdx = theFlatKnots.Lower(); aKnotIdx < theFlatKnots.Upper(); diff --git a/tests/bugs/moddata_3/bug27261_1 b/tests/bugs/moddata_3/bug27261_1 new file mode 100644 index 0000000000..1938ec7039 --- /dev/null +++ b/tests/bugs/moddata_3/bug27261_1 @@ -0,0 +1,15 @@ +puts "================" +puts "0027261" +puts "================" +puts "" +############################################################### +# Incorrect bounding box is created for the face +############################################################## + +restore [locate_data_file bug27261_f1.brep] f1 +bounding f1 + +# Visual check. +smallview +fit +checkview -screenshot -2d -path ${imagedir}/${test_image}.png \ No newline at end of file diff --git a/tests/bugs/moddata_3/bug27261_2 b/tests/bugs/moddata_3/bug27261_2 new file mode 100644 index 0000000000..b2912e1e0e --- /dev/null +++ b/tests/bugs/moddata_3/bug27261_2 @@ -0,0 +1,15 @@ +puts "================" +puts "0027261" +puts "================" +puts "" +############################################################### +# Incorrect bounding box is created for the face +############################################################## + +restore [locate_data_file bug27261_f2.brep] f2 +bounding f2 + +# Visual check. +smallview +fit +checkview -screenshot -2d -path ${imagedir}/${test_image}.png \ No newline at end of file