(defun C:vccircle() (setq l1(cadr(entsel "slect a line"))) (setq l2(cadr(entsel "slect a line"))) (setq l3(cadr(entsel "slect a line"))) ;| (setq mp1(osnap l1 "mid")) (setq mp2(osnap l2 "mid")) (setq mp3(osnap l3 "mid")) |; (command "circle" "3P" "tan" l1 "tan" l2 "tan" l3) )
or (defun C:vccircle() (command "circle" "3P" "tan" pause "tan" pause "tan" pause) ) |