mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-06-10 11:34:06 +03:00
Introduce new class Font_BRepFont for conversion of font glyph in vector format into BRep representation. New text2brep Draw Harness command. bottle.tcl - draw text on the bottle side using new functionality. ViewerTest - process Delete key in 3D-Viewer to delete selected presentations. Font_FontMgr::FindFont - return correct font when font alias and not default aspect is requested. bottle.tcl - use prism instead of pipe TKViewerTest - add required FreeType dependency verase - display the list of erase objects TKViewerTest - add required FreeType dependency for projects generation
33 lines
592 B
Plaintext
33 lines
592 B
Plaintext
puts "============"
|
|
puts "OCC24181 Render text as BRep (check alphabet)"
|
|
puts "============"
|
|
puts ""
|
|
pload MODELING
|
|
pload VISUALIZATION
|
|
|
|
set THE_FONT_NAME Times-Roman
|
|
set THE_FONT_SIZE 24
|
|
set THE_TEXT {
|
|
`1234567890-=
|
|
~!@#$%^&*()_+
|
|
qwertyuiop[]\\
|
|
QWERTYUIOP{}|
|
|
asdfghjkl;'
|
|
ASDFGHJKL:"
|
|
zxcvbnm,./
|
|
ZXCVBNM<>?§
|
|
}
|
|
|
|
text2brep aBTextN $THE_TEXT $THE_FONT_NAME $THE_FONT_SIZE regular composite=0
|
|
text2brep aBTextC $THE_TEXT $THE_FONT_NAME $THE_FONT_SIZE regular composite=1
|
|
checkshape aBTextN
|
|
checkshape aBTextC
|
|
|
|
ttranslate aBTextC 220 0 0
|
|
vsetdispmode 1
|
|
vtop
|
|
vdisplay aBTextN
|
|
vdisplay aBTextC
|
|
|
|
vfit
|