mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Bnd_OBB constructor from Bnd_Box is fixed for VOID input. DRAW command bounding command is adjusted: - Support of old syntax 'bounding shape'is restored. - Exception on VOID bounding box is avoided. - Arguments are handled in case-insensitive way. - Options -s, -perfmeter, and ability to set result as first argument are removed as redundant. - Help is moved to command definition. Separate command OCC29311 is added (in QADraw) to do the same as option -perfmeter did; tests are updated.
23 lines
529 B
Plaintext
23 lines
529 B
Plaintext
puts "========"
|
|
puts "OCC29311"
|
|
puts "========"
|
|
puts ""
|
|
#################################################
|
|
# Implementation of the Oriented Bounding Boxes (OBB) functionality
|
|
#################################################
|
|
|
|
set px 1
|
|
set py 2
|
|
set pz 3
|
|
|
|
vertex vv $px $py $pz
|
|
set log [bounding vv -obb -dump]
|
|
|
|
if {![regexp {Center: +([-0-9.+eE]+) +([-0-9.+eE]+) +([-0-9.+eE]+)} $log full xc yc zc]} {
|
|
puts "Error in Dump."
|
|
}
|
|
|
|
checkreal "XC" $xc $px 1.0e-7 0.0
|
|
checkreal "YC" $yc $py 1.0e-7 0.0
|
|
checkreal "ZC" $zc $pz 1.0e-7 0.0
|