1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/vis/bug25400
ski 5747059b21 0026833: Create command checkview containing all viewer types
Created command checkview for displaying shapes.
2016-02-05 11:14:37 +03:00

44 lines
1.1 KiB
Plaintext

puts "========"
puts "OCC25400"
puts "========"
puts ""
###################################################################################################
# Visualization, TKOpenGl - Structure disappears if assigned a non-default Z layer
###################################################################################################
box b 1 2 3
vinit
vdisplay b
vfrustumculling 1
vfit
vdump $imagedir/${casename}_default_layer.png
# 1. Test a non-default Z layer:
# the object should not disappear from the screen
# due to wrong frustum culling operation
vzlayer add
vobjzlayer set b 1
# vfit is used to redraw the view, the box disappeared after this due to the issue 25400
vfit
vdump $imagedir/${casename}_new_layer.png
vzlayer del 1
# vfit is used to redraw the view, the textured box appeared again after this
vfit
vdump $imagedir/${casename}_after_delete_layer.png
# 2. Test a non-default display priority value:
# the object should not disappear from the screen
# due to wrong frustum culling operation
vpriority b
vpriority b 6
vdump $imagedir/${casename}_new_priority.png
checkview -screenshot -3d -path ${imagedir}/${test_image}.png