rocneasta Posted April 28, 2010 Posted April 28, 2010 http://www.cadtutor.net/forum/showthread.php?t=47161 i'm posting a link to a question raised before, until we came to a conclusion that the only way is to LISP it! Can i set AutoCAD to automatically draw circle by diameter rather then radius. Perhaps load it in Appload startup so it get's the definition of how to apply command circle... Any working ideas? Quote
alanjt Posted April 28, 2010 Posted April 28, 2010 Quickie... (defun c:CD (/ pt) (if (setq pt (getpoint "\nSpecify center point for circle: ")) (command "_.circle" "_non" pt "_diameter") ) (princ) ) Quote
rocneasta Posted April 29, 2010 Author Posted April 29, 2010 cheers, works like a charm, need to learn this LISP Quote
alanjt Posted April 29, 2010 Posted April 29, 2010 cheers, works like a charm, need to learn this LISP You're welcome. It's saves worlds of time. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.