mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
- all methods of SelectMgr_SelectionManager now processes children first, then check HasOwnPresentations() flag; - test case for issue #27757 Small correction of test case for issue CR27757
27 lines
651 B
Plaintext
27 lines
651 B
Plaintext
puts "============"
|
|
puts "CR27757"
|
|
puts "Visualization - handle child objects in selection manager regardless of HasOwnPresentations() flag"
|
|
puts "============"
|
|
puts ""
|
|
|
|
pload VISUALIZATION QAcommands
|
|
|
|
vinit
|
|
|
|
# create box object that has sphere as a child object
|
|
OCC27757
|
|
vfit
|
|
|
|
# check if the sphere was activated in selection manager
|
|
# and is selectable
|
|
vselect 120 245
|
|
|
|
if {[vnbselected] != "1"} {
|
|
puts "Error: no object was selected; the sphere must be selected!"
|
|
}
|
|
if {[vreadpixel 145 285 name] != "GRAY80 1"} {
|
|
puts "Error: the sphere is not highlighted with selection color!"
|
|
}
|
|
|
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|