This is an excellent feet/inch calculator program but it is not free.
I'd bet that LeeMac could make one just as good during his lunch break.
http://www.jobbercalculator.com/downloads.htm
Registered forum members do not see this ad.
Hi All
I'm look for a macro or lips to create Feet-Inch calculator (specially adding feet-inch to feet-inch and other math operations). working in architectural design requires in many occasions adding and subtraction feet-inch calculations
Thanks
This is an excellent feet/inch calculator program but it is not free.
I'd bet that LeeMac could make one just as good during his lunch break.
http://www.jobbercalculator.com/downloads.htm
“Absence of evidence is not evidence of absence.” - Dr. Carl Sagan
Use the distof function to convert everything to decimal, perform the arithmetic, then use the rtos function to convert back to feet/inches.
Quick example:
Code:(defun c:add ( / _getnumber tot num ) (defun _getnumber ( msg / str num ) (while (not (or (eq "" (setq str (getstring t msg))) (setq num (distof str)))) (princ "\nPlease enter a number.") ) num ) (if (setq tot (_getnumber "\nSpecify Amount: ")) (while (setq num (_getnumber "\nSpecify Amount to Add <Exit>: ")) (princ (strcat "Total: " (rtos (setq tot (+ num tot))))) ) ) (princ) )
Lee Mac Programming
With Mathematics there is the possibility of perfect rigour, so why settle for less?
Just another Swamper
Or just buy the right calculator (since you'll be doing this addition quite often).
"I have only come here seeking knowledge. Things they wouldn't teach me of in college." The Police
Eat brains...gain more knowledge!
Freebie here....
http://www.calculatorsoup.com/calcul...tandinches.php
Hand held calculator...
http://www.amazon.com/Calculated-Ind...8515980&sr=8-1
"I have only come here seeking knowledge. Things they wouldn't teach me of in college." The Police
Eat brains...gain more knowledge!
Have you decided which log-in you wanted to keep?
“A narrow mind and a fat head invariably come on the same person” Zig Zigler
![]()
Enter QC in the command line to open the "Quick Calculator"
Make sure that your units are set in your drawing accordingly...
The trick for using fractional inches that I have found is to use the minus sign as a spacer between the whole inch and the fractional inch:
2 1/2" = 2-1/2"
Others have had success using a regular space, but I find using the minus sign works...
QuickCalculator.jpg
~Greg B
Have fun!! www
Tannar Frampton | Facilities Engineering | Revit 2013
Personal Projects | Fender Squier Stratocaster | Custom Smoker | Concrete Patio
Registered forum members do not see this ad.
Is it so complicated to be written in Lisp and Dcl files?
Bookmarks