mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
OpenGl_Workspace::BufferDump() now implicitly converts RGBA dump into requested BGR, BGRA and RGB image. DRAW command dversion is improved to report OpenGL variant used (desktop or ES); reporting of version of MSVC is corrected for VC14 and above; reporting of HAVE_OPENCL option is removed. Usage of command vdump is corrected in some tests to specify extension .png for an image file. Compiler warning is eliminated in OpenGl_Text.cxx (OpenGL ES mode only).
81 lines
2.0 KiB
Plaintext
81 lines
2.0 KiB
Plaintext
puts "============"
|
|
puts "CR26413"
|
|
puts "============"
|
|
puts ""
|
|
###################################################################################
|
|
puts "Visualization, SelectMgr_ViewerSelector - Pixel tolerance is overridden by selection sensitivity"
|
|
###################################################################################
|
|
|
|
pload VISUALIZATION MODELING
|
|
|
|
vinit View1
|
|
box b 1 1 1
|
|
vdisplay b
|
|
vfit
|
|
|
|
set x_on_edge 320
|
|
set y_on_edge 340
|
|
set x_on_vert 383
|
|
set y_on_vert 306
|
|
|
|
set x_sel_precise 228
|
|
set y_sel_precise 393
|
|
set x_sel_tol 228
|
|
set y_sel_tol 400
|
|
|
|
set x_notol 374
|
|
set y_notol 309
|
|
set x_tol 370
|
|
set y_tol 312
|
|
|
|
vselmode b 2 1
|
|
|
|
# check precise selection of the edge
|
|
vmoveto ${x_sel_precise} ${y_sel_precise}
|
|
checkcolor ${x_on_edge} ${y_on_edge} 0 1 1
|
|
# check selection in neighborhood of the edge
|
|
vmoveto 0 0
|
|
vmoveto ${x_sel_tol} ${y_sel_tol}
|
|
checkcolor ${x_on_edge} ${y_on_edge} 1 1 0
|
|
|
|
vmoveto 0 0
|
|
# increase selection precision
|
|
vselprops -pixtol 8
|
|
|
|
# check precise selection of the edge
|
|
vmoveto ${x_sel_precise} ${y_sel_precise}
|
|
checkcolor ${x_on_edge} ${y_on_edge} 0 1 1
|
|
# check selection in neighborhood of the edge
|
|
vmoveto 0 0
|
|
vmoveto $x_sel_tol ${y_sel_tol}
|
|
checkcolor ${x_on_edge} ${y_on_edge} 0 1 1
|
|
|
|
# check that after precision reset selection works as usual
|
|
vmoveto 0 0
|
|
vselprops -pixtol -1
|
|
vmoveto ${x_sel_precise} ${y_sel_precise}
|
|
checkcolor ${x_on_edge} ${y_on_edge} 0 1 1
|
|
vmoveto 0 0
|
|
vmoveto ${x_sel_tol} ${y_sel_tol}
|
|
checkcolor ${x_on_edge} ${y_on_edge} 1 1 0
|
|
|
|
# check that point sensitivity is inreased for all types of
|
|
# sensitive entities
|
|
vmoveto 0 0
|
|
vselmode b 1 1
|
|
vselprops -pixtol -1
|
|
|
|
vmoveto ${x_notol} ${y_notol}
|
|
# check that vertex is highlighted and edge is not
|
|
checkcolor ${x_on_edge} ${y_on_edge} 1 1 0
|
|
checkcolor ${x_on_vert} ${y_on_vert} 0 1 1
|
|
|
|
vmoveto 0 0
|
|
vselprops -pixtol 8
|
|
vmoveto ${x_tol} ${y_tol}
|
|
# check that vertex is highlighted and edge is not
|
|
checkcolor ${x_on_edge} ${y_on_edge} 1 1 0
|
|
checkcolor $x_on_vert $y_on_vert 0 1 1
|
|
|
|
vdump ${imagedir}/${casename}.png
|