mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Max tolerance is now applied to all objects and entities by default; if there is an entity with a lower tolerance, selecting frustum will be recalculated for it. The ability to set sensitivity for each entity individually is moved to protected section of SelectBasics_SensitiveEntity SetPixelTolerance from AIS_InteractiveContext now sets custom tolerance that is applied to all sensitives. Added -unset option to vselprecision command to disable custom tolerances. Test case for issue #26159
24 lines
551 B
Plaintext
24 lines
551 B
Plaintext
puts "================================================================"
|
|
puts "CR26159"
|
|
puts "Visualization - revise tolerance implementation for selection."
|
|
puts "================================================================"
|
|
puts ""
|
|
|
|
pload VISUALIZATION MODELING
|
|
box b1 1 1 1 1 1 1
|
|
box b2 3 3 3 1 1 1
|
|
box b3 6 6 6 1 1 1
|
|
vdisplay b1 b2 b3
|
|
vfit
|
|
|
|
# activate vertex selection
|
|
vselmode b1 1 1
|
|
|
|
# check selection tolerance
|
|
vmoveto 58 324
|
|
checkcolor 58 324 0 1 1
|
|
|
|
# to print tolerance in case of failure:
|
|
puts [vselprecision]
|
|
vdump $imagedir/${casename}
|