Message 1 of 10
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
It seems AutoCAD has different definitions of the Fillet command.
The commandline Fillet gives a different output than the LISP Fillet. See image below and DWG attached.
Does anyone know how I can use/ address the *correct* Fillet definition in LISP?
You can see the difference in the command line:
Select first object or [uNdo/Polyline/Radius/Trim/mUltiple]: <= this definition gives wrong output
Select first object or [Undo/Polyline/Radius/Trim/Multiple]: <= this definition gives correct output
Test routine:
(defun c:f0test ()
(setvar "cmdecho" 0)
(setq old_radius (getvar "filletrad"))
(setvar "filletrad" 0)
(command "_.fillet" pause pause)
(setvar "filletrad" old_radius)
(setvar "cmdecho" 1)
(princ)
)
Solved! Go to Solution.