level 1
柚子茶9002
楼主
;;;;;*********万花筒 程序开始*********
(defun c:wht ()
(setvar "cmdecho" 0)
(setvar "osmode" 0)
(princ "★功能:绘制万花筒.\n")
(while T
(setq i 0
n 122
)
(setvar "cmdecho" 0)
(command "erase" "all" "")
(repeat n
(setq i (1+ i))
(command "color" (itoa (* i 2)))
(command "CIRCLE" '(0 0) (* i 5) "")
(command "delay" "10")
(command "ZOOM" "E")
)
)
;;;
(setvar "osmode" 15359)
(princ)
)
;;;;;*********万花筒 程序结束**********
2016年06月23日 07点06分
1
(defun c:wht ()
(setvar "cmdecho" 0)
(setvar "osmode" 0)
(princ "★功能:绘制万花筒.\n")
(while T
(setq i 0
n 122
)
(setvar "cmdecho" 0)
(command "erase" "all" "")
(repeat n
(setq i (1+ i))
(command "color" (itoa (* i 2)))
(command "CIRCLE" '(0 0) (* i 5) "")
(command "delay" "10")
(command "ZOOM" "E")
)
)
;;;
(setvar "osmode" 15359)
(princ)
)
;;;;;*********万花筒 程序结束**********