Possible to change circle default from radius to diameter?
Possible to change circle default from radius to diameter?
(OP)
When you go to draw a circle, you know it defaults to radius. Why is beyond me - very rarely do I draw a circle according to it's radius. I was wondering if there was someway to change that.
I would rather it default to diameter - is there anyway to make it do so?
Thanks in advance. I have a feeling I already know the answer.
I would rather it default to diameter - is there anyway to make it do so?
Thanks in advance. I have a feeling I already know the answer.





RE: Possible to change circle default from radius to diameter?
RE: Possible to change circle default from radius to diameter?
But it sparked another idea...just remove the circle command out of my .pgp and create a lisp routine for it...
(CV is my circle command)...
;CIRCLE WITH DIA.
;INVOKES CIRCLE COMMAND WITH DIA DEFAULT
(defun c:cv ()
(command "circle" pause "d" pause))
Works just the same.
RE: Possible to change circle default from radius to diameter?
RE: Possible to change circle default from radius to diameter?
Good Luck
Ralph
RE: Possible to change circle default from radius to diameter?
Thanks for the tip though - I hadn't though of that.