+ Reply to Thread
Results 1 to 3 of 3

Thread: 2006, 2007 acad

  1. #1
    Forum Newbie
    Using
    not specified
    Join Date
    Jan 2006
    Location
    TUCSON
    Posts
    2

    Default 2006, 2007 acad

    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.

  2. #2
    Forum Deity
    Using
    not specified
    Join Date
    Jul 2004
    Location
    Anchorage, Alaska
    Posts
    2,074

    Default

    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

  3. #3
    Senior Member
    Using
    not specified
    Join Date
    Dec 2004
    Location
    YUL
    Posts
    484

    Default

    Registered forum members do not see this ad.

    I use this:

    Code:
    (defun c:f ()
      (setvar "cmdecho" 0)
      (setq sdf (getvar "filletrad"))
      &#40;princ "\n filletrad <  "&#41;
      &#40;princ sdf&#41;
      &#40;princ " > ?? &#58;"&#41;
      &#40;setq df &#40;getdist&#41;&#41;
      &#40;if &#40;= df nil&#41;&#40;setq df sdf&#41;&#41;
      &#40;setvar "filletrad" df&#41;
      &#40;setq e1 0&#41;
      &#40;while e1
        &#40;command "fillet" &#40;setq e1 &#40;entsel "\n Select first object&#58;"&#41;&#41;
    	     &#40;if e1 &#40;setq e2 &#40;entsel "\n Select second object&#58;"&#41;&#41;&#41;&#41;
      &#41;
      &#40;princ&#41;
    &#41;

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts