mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Improved objects sorting by depth. The sensitivity calculation for the manipulator has been changed. Now the sensitivity of the elements of the manipulator depends on its size. Also fixed the problem of erroneous selection of unfilled circles (SelectMgr_Frustum<N>::hasCircleOverlap() function). Test case vselect/bugs/bug27848 added.
25 lines
521 B
Plaintext
25 lines
521 B
Plaintext
puts "============"
|
|
puts "CR23539: Test case for polygonal shift selection"
|
|
puts "============"
|
|
puts ""
|
|
|
|
box a 10 10 10
|
|
box b 50 50 50 10 10 10
|
|
vinit
|
|
vdisplay a b
|
|
vfit
|
|
vselmode 2 1
|
|
vselect 0 0
|
|
vselect 58 300
|
|
vselect 300 200 300 60 400 60 407 150 -xor
|
|
|
|
set NbSelected1 [vnbselected]
|
|
if { ${NbSelected1} != 13 } { puts "Error : Polygonal shift selection doesn't work properly" }
|
|
|
|
vselect 350 121 -xor
|
|
|
|
set NbSelected1 [vnbselected]
|
|
if { ${NbSelected1} != 12 } { puts "Error : (case 2)" }
|
|
|
|
vdump ${imagedir}/${casename}.png
|