Message 1 of 8
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
hello. I am writting a lsp. it's scale lsp. It works continuously.
if scale value is 0.8. just enter ---> does not working. what is the problem. some help plz
always thank you all guys
(defun c:saa (/ s1 p1)
(if (= mss nil)
(setq mss 0.8))
(setq dxx (getdist (strcat "\n>> input scale <"(rtos mss 2 2)">: ")))
(if (numberp dxx)(setq mss dxx))
(while
(setq s1 (ssget ))
(setq p1 (getpoint "\npick base point:"))
(command "_.scale" s1 "" p1 dxx )
(terpri))
(princ)
)
Solved! Go to Solution.