Jake Lucier gives us two small LISP routine macros to help adjust the UCS (user coordinate system) in AutoCAD. One adjusts the UCS to Plan View; the other returns to World View from Plan View. "I use these two routines while keeping civil site plans at true north with their real insertion points during my site plan layout exercises. This allows me to lay out orthogonal site plans with ease. No more do you need to struggle to change your plan view to and from World." UCS TO PLAN (DEFUN C:UP() (COMMAND "UCS" "Z" PAUSE PAUSE) (COMMAND "PLAN" "") (SETVAR "SNAPANG" 0) ) PLAN TO WORLD (DEFUN C:PW() (COMMAND "UCS" "WORLD" ) (COMMAND "PLAN" "") ) Notes from Cadalyst Tip Patrol: These two macros can be put in your ACAD.LSP file and loaded with AutoCAD, or you could put them in a LISP file and load them with the Appload command. You can even take these macros and make them work in a toolbar, palette, mouse button, or in the ribbon. If you change your UCS or leave Plan View often, these macros can reduce your clicks. |