+ Reply to Thread
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 11
  1. #1
    Forum Newbie
    Using
    Land Desktop 2005
    Join Date
    Jan 2008
    Posts
    7

    Default DVIEW twist or UCS

    Registered forum members do not see this ad.

    I am trying to figure out what would be the best/quickest/most simple way to rotate a drawing.

    I know dview twist works well. That is what im use to but there has to be an easier way to use it than what i have been doing.
    When i use dview twist it is kind of a guessing game to how it will be rotated. I draw a box, align it with what i want to be horizontal in paper space, draw a line to show north so i can make sure my view will be north up or to the right then i rotate it.

    Other people at work use the UCS FOLLOW then create names for the views. My problem with that is the coordinates gets screwed up.

    What is the Best way to twist a drawing for simple dimensioning and labeling, but still easy inserts from 0,0... like how can i get the quick leader text to still come in horizontal with paper space with the view twisted.

    Thanks for any help / advice.

    Much appreciated

  2. #2
    Super Member
    Using
    Land Desktop 2006
    Join Date
    Nov 2007
    Location
    Chandler, Az
    Posts
    548

    Default

    Are you creating a viewport than twisting your drawing within that viewport? if you do that you should be able to just dimension in paperspace and everything will read right. Unless Im misunderstanding the problem, it is all a preference thing when it comes to how to do certain things. I have a twist lisp routine that allows to just pick two points tha you want to be horizontal. I can post it tomorrow if youd like...

  3. #3
    Forum Deity
    Computer Details
    lpseifert's Computer Details
    Computer:
    A bit faster than an abacus
    Using
    Civil 3D 2008
    Join Date
    Sep 2006
    Location
    Pittsburgh, PA, USA
    Posts
    3,258

    Default

    Try putting this in your acaddoc.lsp file
    Code:
    (defun c:ue ()(command "ucs" "e"))
    (defun c:uw ()(command "ucs" "w"))
    (defun c:uv ()(command "ucs" "v"))
    (defun c:up ()(command "ucs" "p"))
    (defun c:uo ()
        (setq pt1 (getpoint "Pick reference point: ")
                el (RTOS(* -1.0(getreal "Enter elevation: ")))
                CO (STRCAT "0," el)
                  )
        (command "UCS" "o" pt1)
        (command "UCS" "o" CO))
    UE will align the UCS to an entity
    UW will restore the UCS to World
    UV will align the UCS to view (good for annotation)
    UP will restore the UCS to the previous
    UO will set the UCS to an elevation (Y coordinate)... good for profiles

  4. #4
    Forum Newbie
    Using
    Land Desktop 2005
    Join Date
    Jan 2008
    Posts
    7

    Default Thank You

    Quote Originally Posted by smorales02 View Post
    Are you creating a viewport than twisting your drawing within that viewport? if you do that you should be able to just dimension in paperspace and everything will read right. Unless Im misunderstanding the problem, it is all a preference thing when it comes to how to do certain things. I have a twist lisp routine that allows to just pick two points tha you want to be horizontal. I can post it tomorrow if youd like...

    we dont dimension in paperspace... and i think that is pretty lame. I just dont have the athority to make that change.

    lpseifert: Thanks for the Lisps!!

    i want to use UCS and do everything in paperspace. we'll see.

  5. #5
    Super Member
    Using
    Land Desktop 2006
    Join Date
    Nov 2007
    Location
    Chandler, Az
    Posts
    548

    Default

    Ive always dimensioned in paperspace till I got to this new company which likes to show everything in modelspace. So I would come across the same problem you are, my work around was to do all my work in paperspace (dimensions and such) than just do a CHSPACE for all of them...works out good for me, maybe something you should try.

  6. #6
    Forum Newbie
    Using
    Land Desktop 2005
    Join Date
    Jan 2008
    Posts
    7

    Default

    yeah same here... I love change space!

    Thanks again.

  7. #7
    Senior Member BOB'27T's Avatar
    Computer Details
    BOB'27T's Computer Details
    Computer:
    Dell Precision 690
    Monitor:
    Dual 21" Dell
    Using
    Civil 3D 2009
    Join Date
    Sep 2007
    Location
    Tavares,Florida
    Posts
    416

    Default

    Have you tried using the MVSETUP to rotate your drawing? That's how we rotate our sites.

  8. #8
    Super Moderator SLW210's Avatar
    Computer Details
    SLW210's Computer Details
    Operating System:
    Windows XP Pro
    Computer:
    HP Compaq dc 7600 Convertable
    Motherboard:
    ACPI Multiprocessor
    CPU:
    Intel Pentium D 3.4 GHz
    RAM:
    2 GB RAM
    Graphics:
    NVIDIA Quadro NVS 285
    Stotage:
    250 GB
    Monitor:
    Sony Multiscan E540 & Viewsonic P815
    Using
    AutoCAD 2008
    Join Date
    May 2007
    Location
    Memphis, TN USA
    Posts
    3,445

    Default

    Quote Originally Posted by BOB'27T View Post
    Have you tried using the MVSETUP to rotate your drawing? That's how we rotate our sites.
    It is MVSETUP>Align>Rotate View. I use that also.
    Be careful what you wish for, it may come true.

  9. #9
    Forum Newbie
    Using
    Land Desktop 2005
    Join Date
    Jan 2008
    Posts
    7

    Default

    Yes i run into some of the same issues as dview twist. Becaues for whatever reason we still dimension & label in model space.

  10. #10
    Super Member rustysilo's Avatar
    Using
    Civil 3D 2008
    Join Date
    Jul 2007
    Location
    Jacksonville, FL - USA
    Posts
    1,451

    Default

    I do it like you, draw a line and get the angular dim to input in dview > twist. Then I set my viewport at that twist value and change my snapang for the twisted view to do my notes and such.

    This works fine for me, however it seems like there was a way to automate the dview > twist so that you could simply select an object or something to align the view with.
    "Constantly choosing the lesser of two evils is still choosing evil." ~ Jerry Garcia
    flickr | myspace
    | work | business | creed
    rustysilo's tips & tutorials

Similar Threads

  1. dview twist
    By ktlandscapearchitect in forum AutoCAD Drawing Management & Output
    Replies: 5
    Last Post: 6th Mar 2007, 11:39 pm
  2. Other Than Dview
    By chance in forum AutoCAD Drawing Management & Output
    Replies: 2
    Last Post: 22nd Dec 2006, 07:01 pm
  3. UCS or Dview?
    By Tconn in forum AutoCAD Drawing Management & Output
    Replies: 7
    Last Post: 1st Dec 2006, 02:06 pm
  4. rendering in dview
    By jess in forum AutoCAD 3D Modelling & Rendering
    Replies: 2
    Last Post: 22nd May 2006, 07:03 pm
  5. Dview command
    By alitasi in forum AutoCAD Drawing Management & Output
    Replies: 3
    Last Post: 5th Sep 2004, 11:05 pm

Bookmarks

Posting Permissions

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