- 积分
- 14175
- 明经币
- 个
- 注册时间
- 2004-5-5
- 在线时间
- 小时
- 威望
-
- 金钱
- 个
- 贡献
-
- 激情
-
|
本帖最后由 作者 于 2005-2-21 10:01:30 编辑
在连续运行
(点 pt1 0,0)
(点 pt2 5,0)
(command "line" 0,0 100,0 "")
(repeat 100
(command "move" (entlast) pt1 pt2)
(setq pt1 pt2)
(Setq pt2 (polar pt2 pi 5))
想按ESC删除所有,用下面这样是不是不行呀
(Defun *error* () (princ "\n程序终止") (command) (Setq ss_get (ssget "X" '((8 . "ghost_1")))) (command "erase" ss_get "") (setvar "clayer" "0") (princ) ) |
|