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/bug29947
kgv e2aba8ebf3 0029947: Visualization - SelectMgr_SelectableObject::GetSelectPresentation() should copy object clipping planes
Methods SelectMgr_SelectableObject::GetHilightPresentation(), ::GetSelectPresentation() and ::UpdateClipping()
have been corrected to copy clipping planes of the object into highlighting and selection presentations.
2018-07-13 15:05:40 +03:00

21 lines
612 B
Plaintext

puts "============="
puts "0029947: Visualization - SelectMgr_SelectableObject::GetSelectPresentation() should copy object clipping planes"
puts "============="
pload MODELING VISUALIZATION XDE
vclear
vinit View1
vaxo
meshfromstl m [locate_data_file shape.stl]
vfit
vdisplay -dispMode 2 m
vselmode m 8 1
vselect 160 170 320 370
if { [vreadpixel 230 260 rgb name] == "BLACK" } { puts "Error" }
vclipplane c -set m -equation 0 1 0 4
if { [vreadpixel 230 260 rgb name] != "BLACK" } { puts "Error" }
vmoveto 75 172
if { [vreadpixel 70 170 rgb name] != "BLACK" } { puts "Error" }
vdump ${imagedir}/${casename}.png