mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
OpenGl_View now caches bounding boxes per Z-layer (instead of bounding box of entire scene in Graphic3d_CView). Redundant invalidation of cached scene bounding box is now avoided in case when new presentation attributes are assigned to the graphic structure. Add a new methods ConsiderZoomPersistenceObjects() and considerZoomPersistenceObjects() in the Graphic3d_CView, OpenGl_View and OpenGl_Layer classes. Call ConsiderZoomPersistenceObjects() in the V3d_View::FitMinMax method. std::numeric_limits<T>::lowest() fix
21 lines
525 B
Plaintext
21 lines
525 B
Plaintext
puts "========"
|
|
puts "OCC27374"
|
|
puts "========"
|
|
puts ""
|
|
################################################################################
|
|
puts "Visualization - add support zoom persistence objects for FitAll operation"
|
|
################################################################################
|
|
|
|
vinit
|
|
vclear
|
|
|
|
box b0 30 0 0 3 3 3
|
|
box b1 -30 -30 30 10 20 30
|
|
box b2 30 0 30 100 100 100
|
|
vdisplay b0
|
|
vdisplay b1 -trsfPers zoom -perspos 10 0 0
|
|
vdisplay b2 -trsfPers zoom -perspos 40 0 30
|
|
vfit
|
|
|
|
vdump $imagedir/${casename}.png
|