What Im trying to do is to make a lisp for a leader line, but to make it so it will have dual heads.(line a wish bone)
Im very much a beginer with lisp so plese be pacient.
this is what i have sorted out so far, it's very rought but im learning.
(defun c:db ()
(setq 1P (getpoint "\n Enter 1st leader point:"

)
(setq 2P (getpoint "\n Enter 2ND leader point:"

)
(setq 3P (getpoint "\n Enter 3RD leader point:"

)
(command "LINE" 1P 3P 2P)
)
this gets me basically what i want, the double wish bone minus the arrow heads, if i change LINE to Leader. It gets me one leader but it goes through all three points.
Can some one please help me out,