Message 1 of 6

Not applicable
10-07-2018
05:14 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
helper guys. I am learning lsp and making easy code.
(defun c:n (/ no siz pt)
(setq alf '("a20" "a75" "b40" "c30" "d10"))
(setq no 1)
(setq siz (* 3 (getvar "dimscale")))
(while (setq pt (getpoint "pick point :"))
(command "text" "m" pt siz 0 alf)
(setq no (1+ no))
)
(princ)
)
I made it but not working. some help please
if one click ---> a20
if 3 click ---> a20 a75 b40
if 5 click ---> a20 a75 b40 c30 d10
I want to do this. thank you guys
Solved! Go to Solution.