mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
camera movement AutoZFit operation now may be applied on Visual3d_View level. Visual3d_View tracks Graphic3d_Structure updates and call AutoZFit within Visual3d_View::Redraw if necessary. In order to get AutoZFit functionality on Visual3d_View level ZfitAll method moved from V3d_View into Graphic3d_Camera. AutoZFit method and AutoZFitMode flag now part of Visual3d_View. Test case for issue CR24996
24 lines
486 B
Plaintext
24 lines
486 B
Plaintext
puts "============"
|
|
puts "CR24996"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# Visualization - newly displayed objects are clipped until first camera movement
|
|
#######################################################################
|
|
|
|
box b1 0 0 0 1 2 3
|
|
box b2 3 2 1 1 2 3
|
|
box b3 5 -4 0 1 2 3
|
|
|
|
vinit
|
|
vclear
|
|
vaxo
|
|
vsetdispmode 0
|
|
vdisplay b1
|
|
vfit
|
|
vzoom 0.25
|
|
vdisplay b2 b3
|
|
|
|
set anImage ${imagedir}/${casename}.png
|
|
vdump ${anImage}
|