mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
The text label is selected as a rectangle (adds a sensitive object - Select3D_SensitiveFace). The bounding box has been resized to fit the sensitive rectangle. Transform persistent has been added to AIS_TextLabel to correctly position the sensitive rectangle. The findConnectedObject function has also been changed to correctly set transform persistence.
44 lines
1.4 KiB
Plaintext
44 lines
1.4 KiB
Plaintext
puts "============"
|
|
puts "CR24837_2"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# Visualization - revise design and implementation of connected Interactive Objects
|
|
#######################################################################
|
|
|
|
vfont add [locate_data_file DejaVuSans.ttf] SansFont
|
|
|
|
pload MODELING VISUALIZATION
|
|
box o1 -10 -10 -5 1 1 10
|
|
box o2 10 10 -5 1 1 10
|
|
box b1 0 0 0 1 2 3
|
|
box b2 3 0 0 3 2 1
|
|
vinit View1
|
|
vclear
|
|
vtop
|
|
vsetdispmode 0
|
|
vdisplay o1 o2
|
|
vdisplay b1 b2
|
|
vfit
|
|
vdrawtext tb1 "b1" -pos 0 -3 3 -color FF1919 -halign right -valign bottom -angle 000 -zoom 0 -height 14 -aspect regular -font SansFont
|
|
vdrawtext tb2 "b2" -pos 3 0 3 -color 19FF19 -halign right -valign bottom -angle 000 -zoom 0 -height 14 -aspect regular -font SansFont
|
|
vdrawtext bc_1 "bc_1" -pos 0 -9 3 -color FFE1E1 -halign right -valign bottom -angle 000 -zoom 0 -height 14 -aspect regular -font SansFont
|
|
vdrawtext bc_2 "bc_2" -pos 3 -6 3 -color FFE1E1 -halign right -valign bottom -angle 000 -zoom 0 -height 14 -aspect regular -font SansFont
|
|
vsetdispmode 1
|
|
set anImage ${imagedir}/${casename}_2_1.png
|
|
vdump ${anImage}
|
|
|
|
vsetmaterial b1 b2 plastic
|
|
vsetcolor b1 tb1 RED
|
|
vsetcolor b2 tb2 GREEN
|
|
set anImage ${imagedir}/${casename}_2_2.png
|
|
vdump ${anImage}
|
|
|
|
vsetlocation b1 0 -3 0
|
|
vconnect bc 0 -6 0 b1 b2 tb1 tb2
|
|
set anImage ${imagedir}/${casename}_2_3.png
|
|
vdump ${anImage}
|
|
|
|
vsensdis
|
|
vdump $imagedir/${casename}_sensitive.png
|