mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
BndLib/BndLib_AddSurface.cxx : algorithm of building bounding box for BSpline surfaces is improved Test cases are modified according to current state of algorithm Test case bug31995 added
24 lines
748 B
Plaintext
24 lines
748 B
Plaintext
puts "========="
|
|
puts "0031995: Modeling Data - Bounding box wrong for face"
|
|
puts "========="
|
|
puts ""
|
|
|
|
|
|
restore [locate_data_file bug31995.brep] result
|
|
|
|
bounding result -save Xmin Ymin Zmin Xmax Ymax Zmax
|
|
|
|
set tol_abs 1.0e-4
|
|
set tol_rel 1.0e-4
|
|
|
|
checkreal "Xmin" [dval Xmin] -0.4992512824357961 ${tol_abs} ${tol_rel}
|
|
checkreal "Ymin" [dval Ymin] 0.5646627848871493 ${tol_abs} ${tol_rel}
|
|
checkreal "Zmin" [dval Zmin] 0.5646627848871487 ${tol_abs} ${tol_rel}
|
|
checkreal "Xmax" [dval Xmax] 0.1535534905932737 ${tol_abs} ${tol_rel}
|
|
checkreal "Ymax" [dval Ymax] 1.4505295939775213 ${tol_abs} ${tol_rel}
|
|
checkreal "Zmax" [dval Zmax] 1.4505295939775207 ${tol_abs} ${tol_rel}
|
|
|
|
smallview
|
|
fit
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|