Announcements
IMPORTANT. Forum in Read Only mode. You can no longer submit new questions or replies. Please read this message for details
Autodesk Architectural Desktop 2007 & Prior
Welcome to Autodesk’s Autodesk Architectural Desktop 2007 & Prior Forums. Share your knowledge, ask questions, and explore popular Autodesk Architectural Desktop 2007 & Prior topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Correct Upside down dimensions

7 REPLIES 7
Reply
Message 1 of 8
Anonymous
1142 Views, 7 Replies

Correct Upside down dimensions

I have a viewport I rotated 90 degrees. In the model I have a string of vertical dimensions on the right side of the model. In the viewport the dimensions are horizontal and upside down. How can I get the dimension text to show up right side up?
7 REPLIES 7
Message 2 of 8
Anonymous
in reply to: Anonymous

Use the correct UCS when you are placing the dimensions?


wrote in message news:5540428@discussion.autodesk.com...
I have a viewport I rotated 90 degrees. In the model I have a string of
vertical dimensions on the right side of the model. In the viewport the
dimensions are horizontal and upside down. How can I get the dimension text
to show up right side up?
Message 3 of 8
Anonymous
in reply to: Anonymous

dimedit, rotate

wrote in message news:5540428@discussion.autodesk.com...
I have a viewport I rotated 90 degrees. In the model I have a string of
vertical dimensions on the right side of the model. In the viewport the
dimensions are horizontal and upside down. How can I get the dimension text
to show up right side up?
Message 4 of 8
Anonymous
in reply to: Anonymous

This works great:


;;by David Kozina
(defun C:FLIPTEXT (/ ss i ent ele)
(setq ss (ssget '((0 . "DIMENSION")))
i (1- (sslength ss)))
(while (not (minusp i))
(setq ent (ssname ss i)
ele (entget ent))
(entmod
(subst (cons 51 (- (abs (cdr (assoc 51 ele))) PI))
(assoc 51 ele)
ele))
(entupd ent)
(setq i (1- i))))

(defun c:DTF () (c:FLIPTEXT)(princ))


"kstill" wrote in message
news:5540533@discussion.autodesk.com...
dimedit, rotate

wrote in message news:5540428@discussion.autodesk.com...
I have a viewport I rotated 90 degrees. In the model I have a string of
vertical dimensions on the right side of the model. In the viewport the
dimensions are horizontal and upside down. How can I get the dimension text
to show up right side up?
Message 5 of 8
Anonymous
in reply to: Anonymous

Thanks for all your suggestions!
Message 6 of 8
Anonymous
in reply to: Anonymous

Because it is arch-desktop group, may meaned about
AEC dimension. Independently of current UCS, AEC dimensions are
always drawn by WCS.. I had this problem too, may I rotate all model ?


"kstill" wrote in message news:5540533@discussion.autodesk.com...
dimedit, rotate

wrote in message news:5540428@discussion.autodesk.com...
I have a viewport I rotated 90 degrees. In the model I have a string of
vertical dimensions on the right side of the model. In the viewport the
dimensions are horizontal and upside down. How can I get the dimension text
to show up right side up?
Message 7 of 8
Anonymous
in reply to: Anonymous

I'm not sure what you mean. I used generic dimensions, not AEC dimensions. The LISP program worked great for me.
Message 8 of 8
Anonymous
in reply to: Anonymous

Ok, I see. In generic dimensions that problem I described not exists.
If You are using arch-desktop, also try AEC dimensions - very useful thing.

wrote in message news:5574748@discussion.autodesk.com...
I'm not sure what you mean. I used generic dimensions, not AEC dimensions. The LISP program worked great for me.

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report