mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
- picked or selected objects are now highlighted via owners instead of interactive objects; - support methods for owners were added to AIS_InteractiveContext; - dynamically highlighted owners are now displayed in immediate mode; - selection without opening of local context is enabled by default; - added "-local" key to vselmode command to enable selection in local context; - selection filters are now completely supported in AIS_InteractiveContext; - the idea of differencing of selected items onto current (in interactive context) and selected (local selection) was eliminated; - all calls to "current" were replaced by calls to "selected" in terms of future local context removal; - AIS_InteractiveObject::mySelectionMode was removed; - now each selectable object can define own selection mode for "global" selection of the whole object; - whole object selection mode is 0 by default for all standard interactive objects; - immediate structures are now added to topmost and top layer lists; - added support of drawing immediate structures in different layers; - unused code for immediate mode was removed; - vfeedback and vexport commands now produce correct output for raytrace mode.
31 lines
749 B
Plaintext
31 lines
749 B
Plaintext
puts "============"
|
|
puts "OCC24966"
|
|
puts "============"
|
|
puts ""
|
|
####################################################################################
|
|
# Visualization - Problem in local selection mode with selected objects staying
|
|
# in the viewer after erase
|
|
# Selected entity owners coming from decomposition are not erased in local selection
|
|
# context
|
|
####################################################################################
|
|
|
|
vinit View1
|
|
pload ALL
|
|
vinit
|
|
|
|
vertex p1 100 100 0
|
|
vertex p2 150 300 0
|
|
edge e1 p1 p2
|
|
|
|
vdisplay e1
|
|
vselmode e1 2 1 -local
|
|
vselmode e1 1 1 -local
|
|
vselect 0 0 2500 2500
|
|
verase -local
|
|
|
|
if { "[vreadpixel 261 204 rgb name]" != "BLACK" } {
|
|
puts "Error : Selection is not erased."
|
|
}
|
|
|
|
vdump ${imagedir}/${casename}.png
|