1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/v3d/bugs/bug32978
kgv 86d6c284c2 0032978: Visualization - AIS_ViewController::PickPoint() includes objects invisible in current View
SelectMgr_ViewerSelector::TraverseSensitives() now takes into account object's view affinity.
AIS_InteractiveContext::moveTo() - dropped code SelectMgr_AndOrFilter::SetDisabledObjects()
as filtering is now done by selector itself.

ViewAffinity property has been moved to PrsMgr_PresentableObject for simplicity.
Removed redundant map Graphic3d_CView::HiddenObjects().
2022-05-21 17:25:43 +03:00

35 lines
903 B
Plaintext

puts "============"
puts "0031965: Visualization - AIS_InteractiveContext::HilightWithColor() ignores passed highlight style"
puts "============"
puts ""
pload MODELING VISUALIZATION
vinit V1/RootView -width 1024 -height 512 -composer 0
vbackground GRAY20
vinit V2/ViewLeft -parent V1/RootView -width 0.5 -height 1.0
vbackground GRAY30
box b 100 200 300
vdisplay -dispMode 1 b
vaspects b -faceBoundaryDraw 1
vfit
vviewcube vc
vinit V2/ViewRight -parent V1/RootView -width 0.5 -height 1.0 -left 0.5
vbackground GRAY40
psphere s 300
vdisplay -dispMode 1 s
vaspects s -material SILVER
vfit
vzbufftrihedron
vactivate V2/ViewLeft
verase s -view
vcamera -rotationMode pick
vmoveto 100 100
if { [string match "*Select3D_SensitiveSphere*" [vstate -entities]] } { puts "Error: sphere should NOT be detected" }
vseldump $::imagedir/${::casename}_sel.png -type entity
vdump $::imagedir/${::casename}_vis.png