Adesu
Joined: 20 Jul 2005
Posts: 31
|
Posted:
Mon Aug 01, 2005 7:08 am Post subject:
Re: Basic Tools --> trim |
|
|
| Cunning wrote: | Could someone please give me a bit more detail about how this tool
works? I am learning to use autodesk architectural dekstop but I have
hit the stage where I use this during the tutorial and it is a bit
vague. I have "some" autocad knowledge but not a huge amount. If
someone could run through how to do this in regard to the tutorial
(although through some miracle I have managed it by clicking on enough
things) and what each of the options mean it would be most appreciated.
Thanks
Cunning |
Hi Cunning,here simple program for fillet
| Code: |
(setq p1 '(0 0 0))
(setq p2 '(10 0 0))
(command "_line" p1 p2 "")
(setq es1 (entlast))
(setq P3 '(10 10 0))
(command "_line" p2 p3 "")
(setq es2 (entlast))
(setvar "filletrad" 2)
(command "_fillet" es1 es2 "")
|
|
|