Page 1 of 2 12 LastLast
Results 1 to 10 of 17

Thread: Measure PaperSpace in PaperSpace

  1. #1
    All AUGI, all the time Avatart's Avatar
    Join Date
    2004-06
    Location
    Upsidedown in dreamtown
    Posts
    928
    Login to Give a bone
    0

    Default Measure PaperSpace in PaperSpace

    This was raised to me as a question, I have no idea as to why anybody would want to do this, but I don't know the answer and I hate it when that happens.

    How do you measure something drawn in ModelSpace, when you are in PaperSpace, in PaperSpace units. For example, I have two lines that are 8000mm apart, my viewport is scaled to 1:100, how can I measure that as 80mm? I would like to be able to answer in terms of change this variable to that and it will always measure that way.

    If anyone can think of why someone would want that, do let me know....

  2. #2
    AUGI Addict
    Join Date
    2005-07
    Posts
    2,356
    Login to Give a bone
    0

    Default Re: Measure PaperSpace in PaperSpace

    For what its worth (using ACA 2008 ) when doing a dist in paperspace it returns the paperspace value (aka your 80mm) it only returns the models space value if you use the snaps to pick points on objects in model space.

    I don't know if a variable effects this though.

    Only reason I could think of is if someone had a scale rule and wanted to check a paper copy was the the right scale, even then I'm not sure

  3. #3
    AUGI Addict
    Join Date
    2005-07
    Posts
    2,356
    Login to Give a bone
    0

    Default Re: Measure PaperSpace in PaperSpace

    Use chspace, do a dist then undo?

  4. #4
    All AUGI, all the time Avatart's Avatar
    Join Date
    2004-06
    Location
    Upsidedown in dreamtown
    Posts
    928
    Login to Give a bone
    0

    Default Re: Measure PaperSpace in PaperSpace

    Quote Originally Posted by H'Angus View Post
    For what its worth (using ACA 2008 ) when doing a dist in paperspace it returns the paperspace value (aka your 80mm) it only returns the models space value if you use the snaps to pick points on objects in model space.
    It has to snap onto the ModelSpace object to be measuring something real.
    Quote Originally Posted by H'Angus View Post
    Use chspace, do a dist then undo?
    Bit of a faf, the guy wants to do this on loads of things on loads of drawings.

    Thanks for having a go though, Steve!

  5. #5
    AUGI Addict
    Join Date
    2005-07
    Posts
    2,356
    Login to Give a bone
    0

    Default Re: Measure PaperSpace in PaperSpace

    Well looking at some other discussion on the A'desk site, it doesn't seem like there is a variable.

    What does the guy want it for? Other thoughts are to give him a calculator tell him the scale of the drawing and measure the model space distance Or maybe use a dimstyle setup to scale the units accordingly.

    Or open in 2006 or an earlier release and just use dist.

  6. #6
    Certifiable AUGI Addict tedg's Avatar
    Join Date
    2005-06
    Location
    in the upper right corner
    Posts
    3,507
    Login to Give a bone
    0

    Default Re: Measure PaperSpace in PaperSpace

    Quote Originally Posted by Avatart View Post
    This was raised to me as a question, I have no idea as to why anybody would want to do this, but I don't know the answer and I hate it when that happens.

    How do you measure something drawn in ModelSpace, when you are in PaperSpace, in PaperSpace units. For example, I have two lines that are 8000mm apart, my viewport is scaled to 1:100, how can I measure that as 80mm? I would like to be able to answer in terms of change this variable to that and it will always measure that way.

    If anyone can think of why someone would want that, do let me know....
    Well a quick, (cheating) way would be to simply dimension it in PS.
    Create a dimension style for PS: dimscale = 1, units= (as you see fit: decimal units with mm suffix), etc.
    I believe AutoCAD factors in the viewport scale and does the math for you.

    Just a thought

  7. #7
    Certifiable AUGI Addict
    Join Date
    2015-11
    Location
    Jo'burg SA
    Posts
    4,512
    Login to Give a bone
    0

    Default Re: Measure PaperSpace in PaperSpace

    Otherwise, if one of the points are on PS then it measures the PS distance instead of the MS. If both points selected are in MS then it gives the MS distance.

    According to Vanilla 2008's help you could use the SPACETRANS command. However it gives me very weird results indeed!

  8. #8
    I could stop if I wanted to Andy.88917's Avatar
    Join Date
    2005-06
    Location
    Midland, Texas
    Posts
    230
    Login to Give a bone
    0

    Default Re: Measure PaperSpace in PaperSpace

    I typically just draw a line (in paper space) by snapping to the objects in model space, move the line out and do a distance on that line.

  9. #9
    Certified AUGI Addict cadtag's Avatar
    Join Date
    2000-12
    Location
    Cairo - no, not Illinois
    Posts
    5,069
    Login to Give a bone
    0

    Default Re: Measure PaperSpace in PaperSpace

    Try it in 2009, using osnaps on MS entities, and you'll get the model space distance.

    which to my mind is completely borked -- if I wanted the model space distance, i'd just double clik and do a DI to get it. If I want the PS distance between MS objects, I can't use osnaps.

    Call it a BDD decision -- broken by design

  10. #10
    I could stop if I wanted to
    Join Date
    2003-12
    Location
    Pittsburgh, PA
    Posts
    355
    Login to Give a bone
    0

    Default Re: Measure PaperSpace in PaperSpace

    This should work for you... not it's original intent, but effective nonetheless.
    It reports in feet, but it's actually drawing units.
    Code:
    ;; returns horizontal distance regardless of z values - LPS 2008
    (defun c:di (/ pt1 pt2 pt1-flat pt2-flat hd hdtxt)
    (setq pt1 (getpoint "HorDistance  Pick first point: ")
          pt2 (getpoint "Pick end point: " pt1)
          pt1-flat (list (car pt1) (cadr pt1))
          pt2-flat (list (car pt2) (cadr pt2))
          hd (distance pt1-flat pt2-flat)
          hdtxt (strcat  "\nHorizontal distance = " (rtos hd 2 2) "'");(getvar "luprec")
    );setq
    (PRINC)
    (PROMPT hdtxt)
    (princ)
    );defun

Page 1 of 2 12 LastLast

Similar Threads

  1. AutoCAD 2007 - Measure Modelspace Obejcts in Paperspace
    By AutoCAD_Junkie in forum AutoCAD General
    Replies: 8
    Last Post: 2006-09-07, 05:08 AM
  2. Paperspace & Other
    By chillme1 in forum AutoCAD Mechanical - General
    Replies: 0
    Last Post: 2006-07-20, 12:49 PM
  3. Paperspace
    By khinshaw in forum VBA/COM Interop
    Replies: 15
    Last Post: 2005-09-01, 06:02 PM
  4. Dimensioning in Paperspace
    By huascarfdez in forum CAD Standards
    Replies: 3
    Last Post: 2005-05-20, 04:46 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •