Hello
I would like to know if the AutoCad screen could be set up the same as
3DS. In AutoCad, I would have the 4 vports, but each vport would have it's
own UCS. And each time I would change vports the UCS assigned to that vport
would stay. The same as 3DS is set up.
Thank you for any information about this.
Daniel 'Dare' Pasholk
There is an easy way to do this. Create a lisp routine which when you call it
up changes your ucs to current view.
Sample routine below:
(defun c:UV ()
(command "ucs" "v")
)
Add that routine to your acad.lsp file and whenever you type UV, your ucs will
switch to the current view.
Note, you have to be in the desired view for this to happen.
Yann Bertaud – I.D.L. Autodesk.