You just want to draw a line at each vertex? Then just need a little modification of first routine:
Change:
(princ (cdr (nth n e)))
to:
(setq pt (cdr (nth n e)))
(princ pt)
(setq j2 (polar pt (dtr 90) 50))
(command "Line" pt j2 "")
And, include the 'dtr' defun with the first routine.




Reply With Quote

Bookmarks