Jump to content

Upside down dimensions


Recommended Posts

Ok I have not been able to find a solution to this problem. I was sent the floor plan of a building and I am drawing the rcp. I am trying to add some dimensions but they are upside down. The ucs is at world and mirrtext is at 0. I don't know what to do now! Any suggestions would be greatly appreciated.

Link to comment
Share on other sites

I got the drawing from somebody so I am using their dim styles- but it's on my own computer and everything. I also made a new dim style and it did the same thing. So that made me think that that wasn't the problem- but then again I have no idea what the problem is. ;)

Link to comment
Share on other sites

  • 4 years later...

I know this is an old thread, but I just wanted to leave this lisp here for the next person

who seeks an answer to this problem.

 

(defun c:DIMT180 (/ en1 en2 enXt env) 
 (setq en2 nil)
 (prompt "Pick dimension") 
 (while (not en2) 
   (setq en2 (entsel))
   (if en2 
     (progn
       (setq ent (entget (setq en1 (car en2))))
       (if (/= "DIMENSION" (cdr (assoc 0 ent))) 
         (setq en2 nil)
       )
     )
   )
 ) 
 (command "undo" "mark") 
 (if (assoc 53 ent) 
   (progn
     (setq env (+ (cdr (assoc 51 ent)) pi))
     (setq ent (subst (cons 51 env) (assoc 51 ent) ent))
   ) 
   (progn
     (setq ent (append ent (list (cons 51 pi))))
   )
 ) 
 (entmod ent) 
 (princ)
)

Edited by SLW210
Link to comment
Share on other sites

  • 2 weeks later...

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...