1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-06 10:36:12 +03:00
apn 4e3aa6b76e 0024223: Review of unstable test cases
Modified TODOs in unstable test cases
2013-11-01 10:39:46 +04:00

33 lines
827 B
Plaintext

puts "TODO ?OCC12345 Debian60-64: \\*\\* Exception \\*\\*.*"
puts "TODO ?OCC12345 Debian60-64: An exception was caught"
puts "TODO ?OCC12345 Debian60-64: TEST INCOMPLETE"
puts "============"
puts "OCC24181 Render text as BRep"
puts "============"
puts ""
pload MODELING
pload VISUALIZATION
set THE_TEXT "The quick brown fox\njumps over the lazy dog!"
set THE_FONT_NAME Times-Roman
set THE_FONT_SIZES {12 18 24}
vsetdispmode 1
vtop
set aLine 0
foreach aSize $THE_FONT_SIZES {
set aText "\[$aSize\] $THE_TEXT"
vpoint aPnt_$aSize 0.0 $aLine 0.0
vdrawtext $aText 0.0 $aLine 0.0 000 255 255 0 2 000 1 $aSize 4 $THE_FONT_NAME
text2brep aBText_$aSize $aText $THE_FONT_NAME $aSize bolditalic composite=0
ttranslate aBText_$aSize 0.0 $aLine 0.0
vdisplay aBText_$aSize
set aLine [expr $aLine - 4.0 * $aSize]
}
vfit