1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/demo/bug24873_2
kgv c2a388f884 0024873: Draw Harness, ViewerTest - add command vbounding to show presentation bounding box
Test cases for issue CR24873
findPresentation() - fix wrong type of the argument
2014-05-08 13:01:46 +04:00

41 lines
1.1 KiB
Plaintext
Executable File

puts "============"
puts "CR24873"
puts "============"
puts ""
##########################################################################################################
# Draw Harness, ViewerTest - add command vbounding to show presentation bounding box
##########################################################################################################
vinit View1
vclear
vaxo
vsetdispmode 1
psphere s 2
vdisplay s
vfit
set info [vbounding -print s]
regexp {s+\n([-0-9.+eE]+) +([-0-9.+eE]+) +([-0-9.+eE]+) +([-0-9.+eE]+) +([-0-9.+eE]+) +([-0-9.+eE]+)} ${info} full x1 y1 z1 x2 y2 z2
set tol_abs 0.1
set tol_rel 0.1
set expected_x1 -2
set expected_y1 -2
set expected_z1 -2
set expected_x2 2
set expected_y2 2
set expected_z2 2
checkreal "x1" ${x1} ${expected_x1} ${tol_abs} ${tol_rel}
checkreal "y1" ${y1} ${expected_y1} ${tol_abs} ${tol_rel}
checkreal "z1" ${z1} ${expected_z1} ${tol_abs} ${tol_rel}
checkreal "x2" ${x2} ${expected_x2} ${tol_abs} ${tol_rel}
checkreal "y2" ${y2} ${expected_y2} ${tol_abs} ${tol_rel}
checkreal "z2" ${z2} ${expected_z2} ${tol_abs} ${tol_rel}
vdump ${imagedir}/${test_image}.png