• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    AutoCAD Civil 3D

    Reply
    Valued Mentor
    Valued Mentor
    sjg
    Posts: 495
    Registered: ‎09-29-2010

    Re: Rotate drawing in viewport

    12-06-2012 12:39 PM in reply to: rvandever21
    I use ALIGNSPACE, which is also in the express tools, in the Layout Section. Very easy to use.
    Steve Goessling
    Land Consultants
    Civil3D 2012 (Service Pack 2.1)
    Windows 7, 64 bit
    Intel i7 2600 @ 3.40Ghz
    16 GB RAM
    Nvidia Quadro 600
    Please use plain text.
    *Expert Elite*
    Joe-Bouza
    Posts: 3,313
    Registered: ‎12-15-2008

    Re: Rotate drawing in viewport

    12-06-2012 01:32 PM in reply to: LeafRiders

    LOL

     

    Lets start a UCS rebellion!:smileysurprised:

    Thank you

    Joseph D. Bouza, P.E. (one of 'THOSE' People) Civil 3D 2012 & 2013
    HP Z210 Workstation
    Intel Xeon CPU E31240 @ 3.30 Hz
    12 GB Ram

    Note: Its all Resistentialism, so keep calm and carry on


    64 Bit Win7 OS
    Please use plain text.
    *Expert Elite*
    Posts: 2,271
    Registered: ‎07-09-2003

    Re: Rotate drawing in viewport

    12-06-2012 01:33 PM in reply to: rvandever21
    Another option is to just rotate the viewport. It's super easy. The view will be rotated. The viewport will appear to be rotated, but it's not, it's clipped. You can remove the clip after if you wish. VPROTATEASSOC setting is used when rotating viewports.
    Matt Kolberg
    Cansel - Autodesk Division
    http://www.cansel.ca/
    Please use plain text.
    Valued Mentor
    Posts: 473
    Registered: ‎09-29-2008

    Re: Rotate drawing in viewport

    12-06-2012 04:21 PM in reply to: mathewk
    Matt, they could try the rotate command too (grin)
    Please use plain text.
    Contributor
    Posts: 12
    Registered: ‎09-05-2012

    Re: Rotate drawing in viewport

    12-07-2012 04:17 AM in reply to: rvandever21

    Also make sure your viewport isn't locked.


    "The source of expertise is not in the memorization
    of the minute details of a subject but in the thorough
    understanding of the fundamental concepts on
    which it is based." - Dan Appleman
    Please use plain text.
    Distinguished Contributor
    doni49
    Posts: 256
    Registered: ‎12-22-2012

    Re: Rotate drawing in viewport

    01-04-2013 08:59 AM in reply to: rvandever21

    This is a lisp routine that I use to DVIEW rotate my modelspace work.  It makes it so much easier.  Assuming you're alignment is one tangent, you'd pick one end then the other end.

     

    That will be made horizontal to your viewport.

     

    (defun dtr (x)(* pi (/ x 180.0)))
    (defun rtd (x) (* x (/ 180.0 pi)))
    (defun c:dvtwist()
      (setq pt1(getpoint "Select the first point:  "))
      (setq pt2(getpoint "Select the second point:  " pt1))
      (setq ang(angle pt1 pt2))
      (command "Dview" "" "tw" (- 0 (rtd ang)) "")
      (setvar "snapang" ang)
    )

    Please use plain text.
    *Expert Elite*
    Posts: 1,568
    Registered: ‎05-21-2008

    Re: Rotate drawing in viewport

    01-04-2013 09:57 AM in reply to: doni49

    Here is a lisp someone else posted elsewhere on the forums.

    Like the last one, it sets the DVIEW TWIST and the SNAPANG  so that your crosshairs & ortho work horizontally to the screen.

     

    This one lets you pick two points, or select a line, block, or text to use the rotation from.

    __________________________________________________________
    Win 7 Pro, 32 bit; Intel Core i5 @ 2.80GHz; 4GB RAM—Civil 3D 2008 & 2011
    __________________________________________________________
    Credit where credit is due! Give kudos or accept as solution whenever you can.
    Please use plain text.