Visual LISP, AutoLISP and General Customization
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Rectangle Fillet raduis

14 REPLIES 14
Reply
Message 1 of 15
Anonymous
364 Views, 14 Replies

Rectangle Fillet raduis

Where is this value stored. It is not the same as FILLETRAD.

Anyone know?

-Jason
14 REPLIES 14
Message 2 of 15
BillZ
in reply to: Anonymous

If you use the polyline option, for fillet so that it rounds all four corners, for the rectangle at the same time, is that what you are talking about?
Message 3 of 15
Anonymous
in reply to: Anonymous

Within the Rectangle command you can set a radius
for the corners.  That radius is not the same as FILLETRAD.  Where is
this value stored?  Can you set it to zero by doing a (setvar ...)
?

 

-Jason


style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
If
you use the polyline option, for fillet so that it rounds all four corners,
for the rectangle at the same time, is that what you are talking
about?
Message 4 of 15
BillZ
in reply to: Anonymous

Hidden variables????
Message 5 of 15
Anonymous
in reply to: Anonymous

Its gotta be somethin'  maybe the
Registry?

 

-Jason


style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
Hidden
variables????
Message 6 of 15
BillZ
in reply to: Anonymous

I looked everywhere I could think of and haven't found the answer yet either. It is definitely different from the filletrad.
Message 7 of 15
Anonymous
in reply to: Anonymous

and quite the pain, eh?  I sure couldn't find
it anywhere either

 

Anyone have a clue?  Autodesk?

 

-Jason


style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
I
looked everywhere I could think of and haven't found the answer yet either. It
is definitely different from the filletrad.
Message 8 of 15
Anonymous
in reply to: Anonymous

It's not:
a dictionary
a registry entry
a global lisp variable
a config file entry

It is something "current drawing session" specific, because once you close
the drawing, the setting is lost.

--
R. Robert Bell, MCSE
http://www.acadx.com


"Jason Piercey" wrote in message
news:BD239BD1965AEB3C55FF399E8B7468FB@in.WebX.maYIadrTaRb...
| Its gotta be somethin' maybe the Registry?
|
| -Jason
| "BillZ" wrote in message
news:f08f94e.2@WebX.maYIadrTaRb...
| Hidden variables????
|
Message 9 of 15
Anonymous
in reply to: Anonymous

Hi Robert,
If it is not tucked away in the "normal stuff" Where else can you store
temporary data?

-Jason


"R. Robert Bell" wrote in message
news:D6AFC2F1D4DAA2198F2AA4ABD80B4889@in.WebX.maYIadrTaRb...
> It's not:
> a dictionary
> a registry entry
> a global lisp variable
> a config file entry
>
> It is something "current drawing session" specific, because once you close
> the drawing, the setting is lost.
>
> --
> R. Robert Bell, MCSE
> http://www.acadx.com
>
>
> "Jason Piercey" wrote in message
> news:BD239BD1965AEB3C55FF399E8B7468FB@in.WebX.maYIadrTaRb...
> | Its gotta be somethin' maybe the Registry?
> |
> | -Jason
> | "BillZ" wrote in message
> news:f08f94e.2@WebX.maYIadrTaRb...
> | Hidden variables????
> |
>
>
>
>
>
Message 10 of 15
BillZ
in reply to: Anonymous

>It is something "current drawing session" specific, >because once you close
>the drawing, the setting is lost.

Not on R14. I can go to a new drawing and not save changes and it's still there in the new drawing.
Message 11 of 15
BillZ
in reply to: Anonymous

The setting of say 7.345, I mean.
Message 12 of 15
Anonymous
in reply to: Anonymous

Memory. And therefore, it is pretty much inaccessible to lispers.

--
R. Robert Bell, MCSE
http://www.acadx.com


"Jason Piercey" wrote in message
news:29DE6ECDE883A32409E95047426D1AD1@in.WebX.maYIadrTaRb...
| Hi Robert,
| If it is not tucked away in the "normal stuff" Where else can you store
| temporary data?
|
| -Jason
Message 13 of 15
Anonymous
in reply to: Anonymous

Why, not make your own routine with option to adjust fillet. Rectangle and fillet are simple.
Message 14 of 15
Anonymous
in reply to: Anonymous

Both you and Robert are right.  If you close
the drawing in R14, the Autocad session ends

and with the session ended the setting
disappears.

But if you use the new command, the Autocad session
remains, thus keeping the setting.

It therefore isn't in the drawing and most likely
is some kind of ARX setting in ACADAPP.ARX

namespace.

 

Jason, you could trap and save the fillet radius by
writing a lisp front end for the command

and undefine the rectangle command.  Since the
setting is remembered from command to

command, however, it might not be of much
use.

 

Sorry I couldn't be more help.

 

Doug


style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">

It is something "current drawing session" specific,
>because once you close the drawing, the setting is lost.

Not on R14. I can go to a new drawing and not save changes and it's still
there in the new drawing.

Message 15 of 15
Anonymous
in reply to: Anonymous

Thanks, Doug.

 

-Jason


style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">

Both you and Robert are right.  If you close
the drawing in R14, the Autocad session ends

and with the session ended the setting
disappears.

But if you use the new command, the Autocad
session remains, thus keeping the setting.

It therefore isn't in the drawing and most likely
is some kind of ARX setting in ACADAPP.ARX

namespace.

 

Jason, you could trap and save the fillet radius
by writing a lisp front end for the command

and undefine the rectangle command.  Since
the setting is remembered from command to

command, however, it might not be of much
use.

 

Sorry I couldn't be more help.

 

Doug


style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">

It is something "current drawing session" specific,
>because once you close the drawing, the setting is lost.

Not on R14. I can go to a new drawing and not save changes and it's still
there in the new drawing.

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report

”Boost