mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-31 11:15:31 +03:00
49 lines
1.2 KiB
Plaintext
Executable File
49 lines
1.2 KiB
Plaintext
Executable File
|
|
puts "================"
|
|
puts "OCC146"
|
|
puts "================"
|
|
############################################################################
|
|
##The first click on shape selects it - it is right. But the second one deselects it and the following clicks have no effect.
|
|
############################################################################
|
|
|
|
v2dinit
|
|
box b_b 10 15 20
|
|
trotate b_b 0 0 0 1 1 1 45
|
|
v2ddisplay b_b
|
|
v2dfit
|
|
|
|
QASelect2d 155 180
|
|
QASelect2d 155 180
|
|
QASelect2d 155 180
|
|
|
|
if { [array get env os_type] != "" } {
|
|
set os $env(os_type)
|
|
}
|
|
if { [string compare $os "windows"] == 0 } {
|
|
set x1 155
|
|
set y1 180
|
|
} else {
|
|
set x1 155
|
|
set y1 177
|
|
}
|
|
|
|
set rd_ch 80000
|
|
set gr_ch 80000
|
|
set bl_ch 80000
|
|
|
|
set color [QAAISGetPixelColor2d ${x1} ${y1}]
|
|
regexp {RED +: +([-0-9.+eE]+)} $color full rd
|
|
regexp {GREEN +: +([-0-9.+eE]+)} $color full gr
|
|
regexp {BLUE +: +([-0-9.+eE]+)} $color full bl
|
|
|
|
set rd_int [expr int($rd * 1.e+05)]
|
|
set gr_int [expr int($gr * 1.e+05)]
|
|
set bl_int [expr int($bl * 1.e+05)]
|
|
|
|
if { ${rd_int} != ${rd_ch} || ${gr_int} != ${gr_ch} || ${bl_int} != ${bl_ch} } {
|
|
puts "Error : colors are not equal"
|
|
puts "Error : The second selection of selected object deselects it and the following clicks have no effect"
|
|
}
|
|
|
|
set only_screen2d 1
|