mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
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.
19 lines
525 B
Plaintext
19 lines
525 B
Plaintext
puts "==============================================================="
|
|
puts "0030595: Oriented Bounding Box seems not optimal for some shapes"
|
|
puts "==============================================================="
|
|
puts ""
|
|
|
|
pload XSDRAW
|
|
|
|
stepread [locate_data_file bug30595_UC1.stp] s *
|
|
incmesh s_1 0.1
|
|
dchrono stime start
|
|
bounding s_1 -obb -shape bs -optimal
|
|
dchrono stime stop counter s_OBB
|
|
|
|
checkprops bs -v 1.32656e+07 -deps 1.e-5
|
|
|
|
smallview
|
|
donly s_1 bs; fit
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|