True Image Size on screen for measuring with a ruler

True Image Size on screen for measuring with a ruler

mrpieterdelport
Explorer Explorer
1,749 Views
7 Replies
Message 1 of 8

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 Likes
1,750 Views
7 Replies
Replies (7)
Message 2 of 8

imadHabash
Mentor
Mentor

Hi,

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

Imad Habash

EESignature

Message 3 of 8

Valentin_CAD
Mentor
Mentor

@mrpieterdelport ,

 

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

 

 

ValentinWSP_1-1678874506161.png

 

 



Select the "Mark as Solution" if my post solves your issue or answers your question.

Seleccione "Marcar como solución" si mi publicación resuelve o responde a su pregunta.


Emilio Valentin

Message 4 of 8

RSomppi
Mentor
Mentor

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

Message 5 of 8

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 Likes
Message 6 of 8

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 Likes
Message 7 of 8

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 Likes
Message 8 of 8

Patchy
Mentor
Mentor

and don't use wite.out on the screen neither 😁

0 Likes