Author Topic: decimal to architec and other UNIT system  (Read 8862 times)

0 Members and 1 Guest are viewing this topic.

rude dog

  • Guest
decimal to architec and other UNIT system
« Reply #15 on: February 22, 2004, 10:14:41 AM »
Command: l LINE Specify first point: 0,0,0

Specify next point or [Undo]: 12'10-3/4

Command: l LINE Specify first point:
Specify next point or [Undo]: 10

Command: LINE
Specify first point:
Specify next point or [Undo]: 10-3/8

Command: l LINE Specify first point:
Specify next point or [Undo]: 1'0-7/8

Keith™

  • Villiage Idiot
  • Seagull
  • Posts: 16899
  • Superior Stupidity at its best
decimal to architec and other UNIT system
« Reply #16 on: February 22, 2004, 11:24:52 AM »
If you are using the input in a program using the GETSTRING function you must use it in the following manner....

Code: [Select]

(getstring T "put prompt here")


Then you can enter it with a space,  or you alternatively can enter it as RD has shown above OR you can neter it as a sort of hybridlike so...

12'10.75"
12'-10.75"
Proud provider of opinion and arrogance since November 22, 2003 at 09:35:31 am
CadJockey Militia Field Marshal

Find me on https://parler.com @kblackie

ELOQUINTET

  • Guest
decimal to architec and other UNIT system
« Reply #17 on: February 23, 2004, 08:14:05 AM »
kind of related to this i would like a way to quickly toggle between architectural and fractional units. i am in fabricational so we use fractional but when i'm doing layout work from architectural i use architectural. what would a button to do this look like?

daron

  • Guest
decimal to architec and other UNIT system
« Reply #18 on: February 23, 2004, 08:31:57 AM »
I think RD's example is the answer. You separate the inches from fractions by a hypen "-". You don't need the inch mark at all. It is implied.

ELOQUINTET

  • Guest
decimal to architec and other UNIT system
« Reply #19 on: February 23, 2004, 10:09:23 AM »
"fabricational" is that a word? i figured it out guys nevermind

DEVITG

  • Bull Frog
  • Posts: 480
togle button for lunit
« Reply #20 on: February 23, 2004, 01:05:46 PM »
Please put it in a  button  macro .

Code: [Select]


(if (= (getvar "lunits" ) 4 ) (setvar "lunits" 5 ) (Setvar "lunits" 4))



If you only use fract and archi .

"fabricational"  is a word to name the drafter make thing to be fabricated.
 :wink:  :lol:
Location @ Córdoba Argentina Using ACAD 2019  at Window 10

ELOQUINTET

  • Guest
decimal to architec and other UNIT system
« Reply #21 on: February 23, 2004, 09:51:07 PM »
i was getting ahead of myself. if you look i used fractional shortly after fabrication making it fabricational. dyslexia  :roll:

Serge J. Gianolla

  • Guest
decimal to architec and other UNIT system
« Reply #22 on: February 24, 2004, 12:23:28 AM »
Devitg,
If you are as familiar with imperial units as I am [which is pretty much close to nothing], you might have stumbled on a puzzling thing. When you draw a line say 12'10-3/4

Command: LINE Specify first point:
Specify next point or [Undo]: 12'10-3/4
then list the line you will notice a different format of the length is given

          Length =12'-10 3/4" ,  Angle in XY Plane =    308
                  Delta X =7'-11 15/16", Delta Y = -10'-1 7/16", Delta Z =

This happens when your UNITMODE is set on 0, when set on 1
 Length =12'10-3/4" ,  Angle in XY Plane =    308
                  Delta X =7'11-15/16", Delta Y = -10'1-7/16", Delta Z =
that might help when debugging.