Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello!
I'm an AutoLISP beginner and wanted to ask you how I can convert a polyline drawn by the PLF LISP into lines.
It would be great if someone can add the bursting command at the end of this code.
Thank you!
(defun C:PLF ()
(command "_PLINE")
(while (= 1 (getvar "cmdactive"))
(command pause))
(command "._FILLET" "P" "R" 100 "L")
(princ)
)
Solved! Go to Solution.