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/bug27285
vpa 7411850ad7 0027285: Visualization - selection of AIS_MultipleConnectedInteractive is broken
- method SelectMgr_SelectableObject::HasSelection became virtual, unnecessary variable was removed;
- redefined HasSelection method for multiple connected interactives;
- AIS_InteractiveContext::AddOrRemoveSelected was corrected to use global selection owner;
- test case for issue #27285
2016-03-18 16:26:52 +03:00

33 lines
637 B
Plaintext

puts "========"
puts "OCC27285"
puts "========"
puts ""
##################################################################
puts "Visualization - selection of AIS_MultipleConnectedInteractive is broken"
##################################################################
pload VISUALIZATION MODELING
vinit
vsetdispmode 1
box b 100 100 100
vdisplay b
vconnect bc 0 0 300 b
vfit
vchangeselected b
vchangeselected bc
if {[vnbselected] != "2"} {
puts "ERROR: only one object is selected"
}
if {[string match *Selected* [vstate bc]] != "1"} {
puts "ERROR: multiple connected interactive object is not selected"
}
set only_screen 1