mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
28 lines
724 B
Plaintext
28 lines
724 B
Plaintext
puts "============"
|
|
puts "CR24133"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# Development of improvement of dimensions implementation
|
|
# Length dimension
|
|
#######################################################################
|
|
pload VISUALIZATION
|
|
|
|
vfont add [locate_data_file DejaVuSans.ttf] SansFont
|
|
|
|
vinit
|
|
vpoint lengthP1 0 0 0
|
|
vpoint lengthP2 50 50 50
|
|
vdimension dim1 -length -plane xoy -shapes lengthP1 lengthP2 -font SansFont
|
|
vfit
|
|
vmoveto 82 254
|
|
|
|
set x_coord 362
|
|
set y_coord 102
|
|
checkcolor $x_coord $y_coord 0 1 1
|
|
if { $stat != 1 } {
|
|
puts "Error : Highlighting of length dimension is wrong."
|
|
}
|
|
|
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|