circle to circle dimension only text and line

circle to circle dimension only text and line

Gaganpatel
Collaborator Collaborator
927 Views
5 Replies
Message 1 of 6

circle to circle dimension only text and line

Gaganpatel
Collaborator
Collaborator

 

  Dear Sir,

 

 

I have circle to circle dimension only text & dimension line,

 

Please help me.

0 Likes
928 Views
5 Replies
Replies (5)
Message 2 of 6

oscardosanjos
Enthusiast
Enthusiast

Hi,

can you improve your question for a better understanding of what do you really need?

0 Likes
Message 3 of 6

Gaganpatel
Collaborator
Collaborator

Dear Sir,

 

Actually we are making assembly and from that assembly we are making part drawing and that drawing we have to fit in A4 size sheet.

Some times the object length around 10Mtr in that case we have stretch my object to the required length and convert that dimension into exploded text.

 

0 Likes
Message 4 of 6

CADaSchtroumpf
Advisor
Advisor

Why you do not use QSELECT with Dimension and Style P.

 

When select, explode them and apply SCALE with Ref

 

With this, you don't lost value of the dim text

 

0 Likes
Message 5 of 6

DGRL
Advisor
Advisor

@Gaganpatel

 

 

Looking at your drawing I just wonder why don't you use Viewports?

 

If this was of any help please kudo and/or Accept as Solution
Kind Regards
0 Likes
Message 6 of 6

hak_vz
Advisor
Advisor

Best option to your problem is to use viewports and annotative scaling.

 

If this option is unavailable for you, regarding your current practice, best option would be

to create new  object to fit A4, and not to look reshaped or much elongated, the way you do it now.

Put on "false" dimensions. and override them in one continuous loop.

 

 

(defun c:edimtext ( / ent val *error*)
(defun *error* () (setvar cmdecho 1) (princ))
(setvar "cmdecho" 0)
(while
  (setq
    ent (entget(car (entsel "\nSelect dimension object >")))
    val (getstring "\n Override dimension or text >")
    ent (subst  (cons 1  val)(assoc 1 ent) ent)
    ent(entmod ent)
  )
)
(setvar "cmdecho" 1)
(princ)
)

 

 

 

Miljenko Hatlak

EESignature

Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.