Basic math in Autocad?
Basic math in Autocad?
(OP)
Is it possible to add/subtract/divide, etc... on the command line (Something like .4136/2 to get .2086)?
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
|
RE: Basic math in Autocad?
You can also use lisp statements on the command line, you just need to learn its syntax -enclose in parentheses, operator first. Your example:
(/ .4136 2)
be careful in division, if you use all integers the result will be an integer, for example
(/ 5 2)
will give you 2, not 2.5
RE: Basic math in Autocad?