Well, if you don't mind buttons, here's a macro:
^C^C_multiple;_fillet;
you'll need to hit 'esc' to end the command
Registered forum members do not see this ad.
I was wondering if there is a lisp command, that can make the fillet command be continious. instead of it always promting you after use.




Well, if you don't mind buttons, here's a macro:
^C^C_multiple;_fillet;
you'll need to hit 'esc' to end the command


Registered forum members do not see this ad.
I use this:
Code:(defun c:f () (setvar "cmdecho" 0) (setq sdf (getvar "filletrad")) (princ "\n filletrad < ") (princ sdf) (princ " > ?? :") (setq df (getdist)) (if (= df nil)(setq df sdf)) (setvar "filletrad" df) (setq e1 0) (while e1 (command "fillet" (setq e1 (entsel "\n Select first object:")) (if e1 (setq e2 (entsel "\n Select second object:")))) ) (princ) )
Bookmarks