+ Reply to Thread
Results 1 to 5 of 5
  1. #1
    Junior Member
    Using
    not specified
    Join Date
    Apr 2006
    Posts
    15

    Default Problems with fillet commando in lisp

    Registered forum members do not see this ad.

    A lisp routine which runs perfectly in Autocad 2006 , failes in 2007. It seems to give a problem whit the fillet command. Does anyone have an experience with this ?

  2. #2
    Junior Member
    Using
    not specified
    Join Date
    Apr 2006
    Location
    Queensland Australia
    Posts
    22

    Default

    Without seeing any code, one thing I know that has caused me grief is when I named a function, then a new release of acad came along and decided they wanted that name for their function.

  3. #3
    Junior Member
    Using
    not specified
    Join Date
    Apr 2006
    Posts
    15

    Default Problem found

    We found it out ourself. it seems that the fillet command hasn't enough anymore with defining 2 points which are on the lines you want to fillet. Instead we have taken first an ssget at this points and make the fillet command work with the 2 selectionsets.

  4. #4
    Junior Member
    Using
    not specified
    Join Date
    May 2006
    Posts
    13

    Default

    Does anyone know why the fillet command is an unknown command when used in a lisp routine for ABS 2006?

  5. #5
    Senior Member kpblc's Avatar
    Using
    AutoCAD 2005
    Join Date
    May 2006
    Location
    Russia, St-Petersburg
    Posts
    317

    Default

    Registered forum members do not see this ad.

    > supragod98 : now do you call it? Perhaps you have to use structure like this:
    Code:
    (command "_.fillet")
    (while (/= (getvar "cmdactive") 0)
      (command pause)
      ) ;_ end of while
    And does this command works in "manual" start?
    All I say is only my opinion.

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