
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I found this lisp routine from Kent Cooper:
I would like to modify it so that it deletes the radius after the program retrieves the value of the radius. This way I can reinsert the radius so that I know that the radius and lines are connected. (typically after another modification took place.)
Thank you,
Joe
; Kent Cooper, June 2011
(setq aper (getvar 'aperture))
(while
(not (setq pt (cadr (entsel "Select curve to set Fillet Radius: "))))
(prompt "\nNothing selected -- ")
); end while
(setvar 'aperture (getvar 'pickbox)); ensures Osnap won't "see" wrong thing
(if (osnap pt "cen")
(setvar 'filletrad (distance (osnap pt "nea") (osnap pt "cen"))); then
(progn ; else
(prompt "\nNo radius for that object.")
(setvar 'aperture aper)
(exit)
); end progn
); end if
(setvar 'aperture aper)
(command "_.fillet" "_mUltiple")
(princ)
)
Solved! Go to Solution.