1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
nbv 1a0339b464 0029311: Implementation of the Oriented Bounding Boxes (OBB) functionality
1. The class Bnd_OBB has been created to describe the Oriented Bounding Box.

2. Several key methods have been implemented: Bnd_OBB::IsOut(...), Bnd_OBB::Add(...) and Bnd_OBB::Enlarge(...).

3. Interface of Bnd_Box class has changed. New methods have been created. See Bnd_Box.hxx for detailed information.

4. BRepBndLib and Draw_Box classes have been amended in order to provide correct work with Bnd_OBB class.

5. Interface of "bounding" DRAW-command has been changed. Please see help for detailed information.

6. New DRAW-command "isbbinterf" has been created. Please see help for detailed information.

7. "boundingstr" and "optbounding" DRAW-commands have been eliminated because their function can be made by "bounding" DRAW-command (e.g. see tests/bugs/vis/buc60857 or samples/tcl/snowflake.tcl test cases).

8. Documentation has been updated.
2017-12-08 16:39:11 +03:00

43 lines
1.1 KiB
Plaintext
Executable File

pload QAcommands
puts "========"
puts "OCC566"
puts "========"
puts ""
###############################################
##BRepBndLib::AddClose builds box larger than BRepBndLib::Add
###############################################
restore [locate_data_file OCC566.brep] a
bounding -s a -save v1_x v1_y v1_z v2_x v2_y v2_z -dump -shape result
set err2 [OCC566 a]
regexp { *([-0-9.+eE]+) *([-0-9.+eE]+) *([-0-9.+eE]+) *([-0-9.+eE]+) *([-0-9.+eE]+) *([-0-9.+eE]+)} $err2 full v3_x v3_y v3_z v4_x v4_y v4_z
vertex v1 v1_x v1_y v1_z
vertex v2 v2_x v2_y v2_z
vertex v3 $v3_x $v3_y $v3_z
vertex v4 $v4_x $v4_y $v4_z
distmini d1 v1 v2
distmini d2 v3 v4
regexp {([-0-9.+eE]+)$} [dump d1_val] full dis1
puts $dis1
regexp {([-0-9.+eE]+)$} [dump d2_val] full dis2
puts $dis2
set err [expr 1.*abs((($dis1 - $dis2) / $dis2) * 100)]
puts ""
puts [format "Different is %s percents" $err]
if {$err > 1.0} {
puts " Faulty OCC566: BRepBndLib::AddClose builds box larger than BRepBndLib::Add - this should not be so!"
} else {
puts " OCC566 OK"
}
checkview -display a -with result -2d -path ${imagedir}/${test_image}.png