entmake 函数中能否使用变量?谢谢!
(entmake '((0 . "CIRCLE") (62 . 1) (10 4.0 4.0 0.0) (40 . 1.0)))中的颜色、坐标能否用变量表示?请大家帮助一下,谢谢!(entmake (list
'(0 . "CIRCLE")
(cons 62 color)
(cons 10 pt)
(cons 401.0)
) ) 搞定了,自己回答了:
(entmake (list '(0 . "CIRCLE")
(cons 62cl)
(list 10 x y)
(cons 40 R))) Andyhon 发表于 2010-12-30 09:35 static/image/common/back.gif
(entmake (list
'(0 . "CIRCLE")
(cons 62 color)
非常感谢! 学习了好东西
页:
[1]