Results 1 to 6 of 6

Thread: Scaling Objects

  1. #1
    Member
    Join Date
    2005-02
    Posts
    2

    Default Scaling Objects

    I find this method useful to scale objects from metric to english and vise versa. Ener the scale command, select your object. Use reference and select a basepoint (on the selected object) of a given line for which you know the new length desired. After you pick the basepoint enter the @ symbol as your first point then pick the other endpoint of the line on the selected object. Enter the new length desired. Voila.

  2. #2
    I could stop if I wanted to scwegner's Avatar
    Join Date
    2004-12
    Location
    Minneapolis, MN
    Posts
    449

    Default Re: Scaling Objects

    Or you could always use this:


    Code:
    ;;; SCALECONVERT.LSP
    ;;; Scales objects from one unit to another
    
    
    (defun c:scc (/ unit1 unit2 factor ss basept)
    
      (initget "Feet FT Inches MIllimeters MM Centimeters CM Meters")
      (if
        (not
          (setq unit1 (getkword "\nEnter starting units: [Feet/Inches/MIllimeters/Centimeters/Meters] <Inches> "))
        );not
        (setq unit1 "Inches")
      );if
      (initget "Feet FT Inches MIllimeters MM Centimeters CM Meters")
      (if
        (not
          (setq unit2 (getkword "\nEnter desired units: [Feet/Inches/MIllimeters/Centimeters/Meters] <Millimeters> "))
        );not
        (setq unit2 "Millimeters")
      );if
      (setq factor (cvunit 1.0 unit1 unit2))
      (setq ss (ssget))
      (setq basept (getpoint "\nSpecify base point: "))
      (command "scale" ss "" basept factor)
      
      (princ)
    
    )

  3. #3
    100 Club murrayc.49304's Avatar
    Join Date
    2003-03
    Posts
    158

    Default Re: Scaling Objects

    Archlemon's trick also works for details that have been scaled down to fit a title-sheet. Here at the company I work for, I am constantly scabbing details from other jobs that were drawn proportionally, but were scaled down [to fit a modelspace TS] because no one in my company knows how to use Paperspace properly.

    I use the above mentioned trick all the time so that I don't have to reach for my calculator to try and figure out the scaling factor.

    Oh, BTW.... the "R"eference trick that Archlemon mentioned ALSO works for the ROTATE command.

    1.Enter ROTATE command,
    2.Select objects
    3.Pick basepoint (ie. endpoint of a line that you want horizontal to your screen)
    4.Enter R for Reference and pick the same basepoint (ie. Shift+@)
    5.Select the OTHER endpoint of the line.
    6.Turn on yout ORTHO
    7.Pick a point somewhere on your screen that will then make the objects horizontal to your screen.
    Last edited by murrayc.49304; 2005-04-05 at 06:17 PM.

  4. #4
    Certified AUGI Addict jaberwok's Avatar
    Join Date
    2000-12
    Location
    0,0,0 The Origin
    Posts
    8,055

    Default Re: Scaling Objects

    These both also work when inserting scanned images of line drawings for tracing.
    John B

    "With or without religion, you would have good people doing good things and evil people doing evil things. But for good people to do evil things, that takes religion." - Steven Weinberg.

  5. #5
    Active Member bcowper's Avatar
    Join Date
    2002-05
    Location
    Markham, ON, Canada
    Posts
    64

    Default Re: Scaling Objects

    Using reference for scaling and rotating seems to be one of those things a lot of Caddies are ignorant about. Once you find out how reference works for those commands you will never go back to the old way of figuring out rotation angles and measuring scale sizes.

    If you need to scale and rotate objects you can use the Align command which does both at once.
    Brian Cowper

    AutoCAD Map 2008, Civil 3D 2008, LDD 2008, Raster Design 2008.

    Other software: Manifold Universal 8.0, ArcGIS 9.2, Surfer 8

    Manifold Blog

  6. #6
    100 Club murrayc.49304's Avatar
    Join Date
    2003-03
    Posts
    158

    Default Re: Scaling Objects

    Quote Originally Posted by bcowper
    Using reference for scaling and rotating seems to be one of those things a lot of Caddies are ignorant about. Once you find out how reference works for those commands you will never go back to the old way of figuring out rotation angles and measuring scale sizes.

    If you need to scale and rotate objects you can use the Align command which does both at once.
    The ALIGN command is also an awesome option. However, the ALIGN command is only useful if you have something to align your objects TO.

Similar Threads

  1. Replies: 2
    Last Post: 2007-05-08, 08:03 AM
  2. Scaling the same Modelspace Objects at different scales in Paperspace
    By paul.vanvlasselaer in forum AutoCAD General
    Replies: 14
    Last Post: 2007-03-28, 06:52 PM
  3. Moving Text Objects relative to base point as other Objects are moved / scaled
    By William Troeak in forum Dynamic Blocks - Technical
    Replies: 7
    Last Post: 2007-02-06, 01:35 PM
  4. Scaling Objects
    By Jit in forum Revit Architecture - General
    Replies: 1
    Last Post: 2004-02-29, 09:16 PM
  5. Scaling Objects?
    By Kevin Brown in forum Revit Architecture - General
    Replies: 11
    Last Post: 2003-07-30, 02:53 PM

Posting Permissions

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