mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
22 lines
509 B
Plaintext
22 lines
509 B
Plaintext
puts "========"
|
|
puts "0027536: Visualization - incorrect behavior of zoom persisted objects"
|
|
puts "========"
|
|
puts ""
|
|
|
|
vclear
|
|
vinit View1
|
|
vaxo
|
|
|
|
box b -50 -50 -50 100 100 100
|
|
vdisplay b -trsfPers zoom -trsfPersPos 0 0 0 -dispmode 1
|
|
vdump $imagedir/${casename}_1.png
|
|
|
|
vinit View2 w=200 h=400
|
|
vaxo
|
|
vfit
|
|
|
|
# Check that box wasn't resized in small view
|
|
if {[vreadpixel 165 200 -rgb -name] != "DARKGOLDENROD"} { puts "ERROR: zoom persistent box is resized on view sizes changed!" }
|
|
|
|
vdump $imagedir/${casename}_2.png
|