[求助]如何在lisp中dtext把想写的字打出来
www.dimcax.com
[求助]如何在lisp中dtext把想写的字打出来
菜鸟刚学了一下这个,不知道怎么把字写在屏幕上,
想用dtext写字,结果不知道怎么学这个命令,
(setq p1 (getpoint))
(command "dtext" "" "" p1 ^ _^~~~~~不知道怎么出字了)
哪位高手帮帮忙,指导下怎么做哦
另问在lisp中能设置字体样式的吗?
谢谢谢谢!!!!
d
(defun c:123 () (command "text" pause 100 0 "000"))
d
如果正在执行 autocad 时, 碰到了pause符号, 而它是command 函数中的一个参数, 那么这个 command 函数将会暂时停止, 以等待用户来直接输入(或作动态牵引)。
d
在lisp中设置字型可以这样:
(command "style" "hz" "romans,hztxt" "" "0.7" "" "" "" "")
踅摸
d