Anuncios

The Autodesk Community Forums has a new look. Read more about what's changed on the Community Announcements board.

True Image Size on screen for measuring with a ruler

mrpieterdelport
Explorer

True Image Size on screen for measuring with a ruler

mrpieterdelport
Explorer
Explorer

How can I set my drawing on my screen to actual size physically measuring with a ruler.

 

 

[ The subject line of this post has been edited for clarity by @pendean Original: True Image Size on screen ]

0 Me gusta
Responder
1.062 Vistas
7 Respuestas
Respuestas (7)

imadHabash
Mentor
Mentor

Hi,

Even if this is possible (and I rule it out) .. it is absolutely impractical.

Imad Habash

EESignature

Valentin-WSP
Mentor
Mentor

@mrpieterdelport ,

 

I don't recommend this strategy, but here a link that may help.

 

 

ValentinWSP_1-1678874506161.png

 

 



Please select the "Accept as Solution" button if my post solves your issue or answers your question.


Emilio Valentin

RSomppi
Advisor
Advisor

Why don't the measuring tools in AutoCAD work for what you want?

Kent1Cooper
Consultant
Consultant

A bad idea, generally, but in any case, it's come up before, for example >here<, and you can Search for more.  Read about possible approaches and drawbacks, etc.

Kent Cooper, AIA
0 Me gusta

leeminardi
Mentor
Mentor

Here's a simple program that lets you zoom the window to a location and display it at "full size".   The code must be edited to set the correct value for h.   Assuming that you are working with an AutoCAD window that is maximized to fit the display and that the window size will not change you can determine h by creating a square of known size and adjusting the zoom factor so that the square is full size.  Use the viewsize command to show the value for h.  

 

You can zoom in or out with the standard zoom command but when you want a portion of the drawing at full size just use zz.

 

(defun c:zz (/ h p )
; Centers the view at a point specified by the user.
; The view will be full size if h is set correctly.
; To determine the value of h:
; 1.  Set the AutoCAD window to your standard working size
;     (e.g., maximized)
; 2.  Create a square of known size and zoom so that the
;     rectangle is full size.
; 3.  Give the "viewsize" command, the value shown is h.
; 4.  Edit the line below with the correct value for h.  
  (setq h 8.824)
  (setq p (getpoint "\nSpecify full size windo center."))
  (command "_zoom" "c" p h)
  (princ)
)

lee.minardi
0 Me gusta

Washingtonn
Collaborator
Collaborator

IF you absolutely need to measure manually, you'll have to accept the inaccuracies that come with any method/tool you'll use.

 

The most straightforward method would be to print out a drawing to scale, tape it to a flat screen and measure directly with a ruler..... OK, so that's not the answer you were looking for.

 

The second best method would be to utilize a proportional divider with a ruler. Set the divider to a known distance in the drawing view and for the scale and once done, you can measure any other distance showing on the screen with a similar accuracy. If you change the view, readjust the divider. 

 

Remember: be careful and not scratch your screen!

0 Me gusta

Patchy
Mentor
Mentor

and don't use wite.out on the screen neither :cara_que_ríe_con_la_boca_abierta_y_los_ojos_sonrientes:

0 Me gusta