1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/modalg_7/bug30595_1
emv 1bb67d3844 0030595: Oriented Bounding Box seems not optimal for some shapes
Add possibility of construction of the Optimal Oriented Bounding Box from set of points (the case of shape with triangulation).

The interface of the BRepBndLib::AddOBB method is not changed, but the option <theIsOptimal> now controls also the construction of the OBB from Set of points.
The slightly modified DiTo algorithm will be used, checking all possible axes created by the extreme points.
The performance of the construction of the Optimal OBB is lower but the quality is usually much higher (can't be worse by definition).

Test cases for the issue.
2019-06-17 09:26:54 +03:00

42 lines
1.2 KiB
Plaintext

puts "==============================================================="
puts "0030595: Oriented Bounding Box seems not optimal for some shapes"
puts "==============================================================="
puts ""
# average volumes of OBBs on different sets
set OBB_Vol_Exp 615000
# set relative error to 1%
set eps 0.01
restore [locate_data_file bug30595_UC4_P_2K.brep] s1
# build OBB
dchrono s1_time start
bounding s1 -obb -shape bs1 -optimal
dchrono s1_time stop counter s1_OBB
# check volume
checkprops bs1 -v $OBB_Vol_Exp -deps $eps
restore [locate_data_file bug30595_UC4_P_13K.brep] s2
# build OBB
dchrono s2_time start
bounding s2 -obb -shape bs2 -optimal
dchrono s2_time stop counter s2_OBB
# check volume
checkprops bs2 -v $OBB_Vol_Exp -deps $eps
restore [locate_data_file bug30595_UC4_P_125K.brep] s3
# build OBB
dchrono s3_time start
bounding s3 -obb -shape bs3 -optimal
dchrono s3_time stop counter s3_OBB
# check volume
checkprops bs3 -v $OBB_Vol_Exp -deps $eps
smallview +X+Z
donly s3 bs3; fit
checkview -screenshot -2d -path ${imagedir}/${test_image}_xz.png
smallview +X+Y
donly s3 bs3; fit
checkview -screenshot -2d -path ${imagedir}/${test_image}_xy.png