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/bug23649_1
mkrylova e3d4b87912 0031779: Visualization, AIS_ViewController - controller should handle selection schemes
Added AIS_ViewController::MouseSelectionSchemes() property defining map of selection schemes for mouse+modifier combinations.
IsXOR flag has been replaced by AIS_SelectionScheme in interfaces.

Rubber-band selection with Shift key pressed now applies XOR selection scheme in in Draw Harness.
Command vselect has been extended to specify selection scheme by name.
2021-03-04 19:43:13 +03:00

34 lines
919 B
Plaintext

puts "============"
puts "CR23649"
puts "============"
puts ""
#######################################################################
# 0023649: Different behaviour of highlighting after shift selection.
# It tests default functionality of highlighting
# during shift selection of sub-shapes (local context).
#######################################################################
set anImage1 $imagedir/${casename}_Selection.png
set anImage2 $imagedir/${casename}_HighlightFirst.png
set anImage3 $imagedir/${casename}_HighlightSecond.png
box b 1 2 3
vinit
vdisplay b
vfit
vselmode b 2 1
#select the first edge
vselect 232 368
#select the second edge
vselect 165 278 -xor
vmoveto 0 0
vdump ${anImage1}
#highlight the first edge - it should NOT be highlightable by default
vmoveto 232 368
vdump ${anImage2}
#highlight the second edge - it should NOT be highlightable by default
vmoveto 165 278
vdump ${anImage3}