B
bm01
After drawing a pline from p1 to p2, I want to perform a pan function transparently from p2 to p1, then continue to draw a line to p3.
Does any one know how to call the 'p transparent command inside the following rountine? :
(defun c:asd( / p1 p2)
(setq p1 (getpoint "\nStart point: "))
(while (not p2)
(setq p2 (getpoint p1 "\nSecond point: "))
(if p2
(progn
(command "_pline" p1 p2 "'p" p2 p1 "" "") <== How to perform a pan function here?
(setq p1 p2 p2 nil)
)
)
)
)
Rosa Hsiao
Does any one know how to call the 'p transparent command inside the following rountine? :
(defun c:asd( / p1 p2)
(setq p1 (getpoint "\nStart point: "))
(while (not p2)
(setq p2 (getpoint p1 "\nSecond point: "))
(if p2
(progn
(command "_pline" p1 p2 "'p" p2 p1 "" "") <== How to perform a pan function here?
(setq p1 p2 p2 nil)
)
)
)
)
Rosa Hsiao