BrianTFC Posted April 5, 2013 Posted April 5, 2013 Hi All What i'm looking to do is the following with a lisp routine. pick 1st pick 2nd place answer (10) 5'-0" = 50' Thanks, Brian Quote
Lee Mac Posted April 5, 2013 Posted April 5, 2013 Try this old program: Text Calculator [ Desperately needs updating ] Quote
BrianTFC Posted April 8, 2013 Author Posted April 8, 2013 Lee, I was thinking of something a little more simple like this lisp that Jeff Sanders wrote. (defun C:MP() (setvar "cmdecho" 0) (while(setq pickF(entsel "\nFirst Item: ")) (setq pickS(entsel "\nSecond Item: ")) (if(and pickF pickS) (progn (setq valF(distof(cdr(assoc 1 (entget (car pickF)))))) (setq valS(distof(cdr(assoc 1 (entget (car pickS)))))) (setq valN(rtos(* valF valS))) (setq txHt(cdr(assoc 40 (entget (car pickF))))) (setq rtAn(cdr(assoc 50 (entget (car pickS))))) (command "text" (getpoint "\nInsertion Pt:") txHt (angtos rtAn) valN) ) ) ) (princ) ) Thanks Lee for your help. Brian 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.