mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Added short-cuts methods in Message_Messenger for sending message with specified gravity, and stream buffer class for using stream-like interface for that. Similar short-cuts to DefaultMessenger() are added in Message package. ViewerTest has been updated to send messages to Message::DefaultMessenger() instead of direct output to std::cout/std::cerr. Off-topic: spelling error (duplicate "and") is corrected in two places Added test bugs fclasses bug31189
28 lines
672 B
Plaintext
28 lines
672 B
Plaintext
puts "============"
|
|
puts "CR26035"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# Exception when trying to draw dimension between face and point
|
|
#######################################################################
|
|
puts "REQUIRED All: Error: dimension geometry is invalid, -length dimension can't be built on input shapes"
|
|
|
|
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
|
|
|