연속 출력 LISP 다운받아서 잘 쓰고 있습니다. 근데, 한번만 출력하고
command 상태를 유지하려고 하는데 어케해야 할까요..
제가 LISP을 잘 몰라서 그러는데, 제발 어케 수정해야 할까요..
(defun c:pp(/ first other)
(while (/= (setq first(getpoint “first corner:” )) nil)
(setq other(getcorner first “other corner:”))
(command “plot” “w” first other “”)
)
)