- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I am using a pollyline lisp and it is fillet also. I want to add this lisp snap _from but I dont know how can I do. Anybody can help ?
(defun c:PF (/ pt eLast ent)
(setvar "PLINEWID" 0.2)
(if
(setq pt (getpoint "\nSpecify start point: "))
(progn
(setq eLast (entlast))
(command "_.pline" "_non" pt)
(while
(= 1 (logand (getvar 'cmdactive) 1))
(princ "\nSpecify next point: ")
(command PAUSE)
)
(or
(equal eLast (setq ent (entlast)))
(command "_.fillet" "_P" ent)
(setvar "PLINEWID" 0)
)
)
)
(princ)
)
Solved! Go to Solution.
Link copied