Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'd like to make this LISP to chamfer @100, 100 distance as I draw a polyline.
I think we can use the LISP below to add the necessary modifications.
Probably we can register the new LISP as PLC?
I'd appreciate it if someone could take a look at it because I'm very new to LISP.
(defun C:PLF ()
(command "_PLINE")
(while (= 1 (getvar "cmdactive"))
(command pause))
(command "._FILLET" "P" "R" 100 "L")
(princ)
)
Solved! Go to Solution.