mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
- introduces a wrapper for setting up highlight properties: Graphic3d_HighlightStyle; - API of all methods that use highlight or selection color is changed to deal with Graphic3d_HighlightStyle; - highlight in shading mode now supports transparency, implemented via blending; - transparency for selection can also be set, but implementing custom entity owners with additional presentation on application level; - methods PrsMgr_PresentationManager::Highlight, PrsMgr_PresentationManager::BoundBox that highlight object with hard-coded color are removed; - deprecated methods of SelectMgr_EntityOwner, that use presentation manager's highlight method, were removed; - methods of IsHilighted AIS context with selection color checks were replaced; - added API to store dynamic and selection highlight to Prs3d_Drawer class; - customization of dynamic and selection highlight for particular objects is now available through SelectMgr_SelectableObject::HilightAttributes(); - AIS_InteractiveContext highlight methods were updated to support individual highlight styles of interactive objects; - introduced new command - vselprops, that allows to customize global selection and highlight properties like autoactivation, pixel tolerance and colors; - Draw Harness commands vautoactivatesel and vselprecision were removed, use vselprops instead; - fixed bug in command's parser; - test case for issue #27818
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}
|