Jump to content

Maybe I'm missing something here...


jcb56

Recommended Posts

I've had this code for years now, and for some reason it's like as if it's got an extra return in it.

 

(DEFUN C:FF ()

(COMMAND "FILLET" "R" "0")

(PRINC))

 

Now I've never used it on 2016, maybe that's it???

Link to comment
Share on other sites

My $0.05

 

(defun C:r0 () (setvar "filletrad" 0.0)(command "fillet" )) ;sets fillet radius to zero
(defun c:r6 () (setvar "filletrad" 7)(command "fillet") )
(defun c:r7 () (setvar "filletrad" 7)(command "fillet") )
(defun c:r8 () (setvar "filletrad" (command "fillet") )
(defun c:r9 () (setvar "filletrad" 9)(command "fillet") )

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...