 - (defun c:qq ()
- (print "初始点")
- (setq p0 (getpoint "\n指定一点:"))
- (command "_.LINE" p0)
- (while (setq p1 (getpoint "\n指定下一点:"))
- (command p1)
- )
- (command "")
- (princ)
- )
 - (defun c:qq ()
- (command "_.LINE")
- (while (> (getvar "CMDACTIVE") 0) (command PAUSE))
- (princ)
- )
|