Message 1 of 9
Not applicable
06-10-2015
09:42 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Have a simple routine i wrote for a loop leader. When I am picking point a b c it would be nice to see the line I will be drawing so I could make the landing of the leader straight. Any assistance would be great.
(defun c:ll ()
(command "-layer""make""E-ANNO-TEXT""")
(setq a (getpoint "\nEnter First Point : "))
(setq b (getpoint "\nEnter Second Point : "))
(setq c (getpoint "\nEnter third Point : "))
(command "pLine" a b c "")
(command "arc""END"PAUSE)
(princ))
Solved! Go to Solution.