mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
27 lines
564 B
Plaintext
27 lines
564 B
Plaintext
puts "============"
|
|
puts "CR26035"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# Exception when trying to draw dimension between face and point
|
|
#######################################################################
|
|
|
|
vfont add [locate_data_file DejaVuSans.ttf] SansFont
|
|
|
|
vinit View1
|
|
vclear
|
|
vaxo
|
|
|
|
box b -10 -10 -10 20 20 20
|
|
explode b F
|
|
vdisplay b_1
|
|
|
|
vpoint p 10 0 0
|
|
|
|
catch {vdimension len -length -shapes b_1 p -plane zox -font SansFont}
|
|
|
|
vfit
|
|
|
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|
|
|