AutoCAD Land Desktop (Read Only)
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

user UCS vs DVTwist

5 REPLIES 5
Reply
Message 1 of 6
Anonymous
1371 Views, 5 Replies

user UCS vs DVTwist

Could someone please explain which method is better for chaning the rotation angle.
5 REPLIES 5
Message 2 of 6
Anonymous
in reply to: Anonymous

thermal wrote:
> Could someone please explain which method is better for chaning the rotation angle.

That is kind of like asking, "which is better, Ford or Chevrolet?"

Let the debate begin....

--
R.K. McSwain
http://rkmcswain.blogspot.com
Message 3 of 6
Anonymous
in reply to: Anonymous

i use a modified lisp that can do both, depending on what is the best option at the moment (again,
thanks to the original author, whoever you were):


(defun c:dvsnap ( / oldcm twang newang pmpt)
(setq oldcmd (getvar "cmdecho"))
(setvar "cmdecho" 0)
(initget 0 "New 0") ;Set up the user to win
(setq pmpt (getangle "\nType in new Rotation Angle or Pick 2 points: "))
(if (= pmpt nil)
(setq pmpt "0")
)
; (setq TWANG (GETVAR "viewtwist")) ;get the current dview twist in radians
(setq TWANG (/ (* pmpt 180.0) PI)) ;so lets get it to degrees
; (setq TWANG (/ (* pmpt PI) 180)) ;so lets get it to radians
(setq TWANG (* twang -1))

; (if (= pmpt "0")
; (progn
; (if (= 0 twang)
; (setvar "snapang" 0)
(progn
(command "dview" "" "tw" twang "")
(command "snap" "off")
)

;set the snap angle to the negative of the twist angle
(setq SNAPANG (* TWANG -1))

;Rotate the snap
(command "snap" "r" "" SNAPANG)
(command "snap" "off")

(if (= pmpt "New")
(progn
(command "snap" "r" "0,0" "perp" pause)
(command "snap" "off")
)
)
(setvar "cmdecho" oldcmd)
(princ)
);end dvsnap defun
;;---------------
(defun C:UCSV (/)
(command "ucs" "v")
(command "snapang" "0")
(princ)
);end ucsv defun
;;---------------
(princ "\n \"DVsnap\" loaded.\n Type DVSNAP to orient view and x-hairs, type UCSV to orient UCS to
View")
(princ)




wrote in message news:6016360@discussion.autodesk.com...
Could someone please explain which method is better for chaning the rotation angle.
Message 4 of 6
Anonymous
in reply to: Anonymous

Do you have people who will try to use ldd commands when the drawing has a ucs other than world? Then come bug you about why things dont work? Do you have to fix the problems people create when they change the ucs then do a profile?
After you start spending most of your time on trouble shooting other peoples (self created) problems you will probably try to get people to stick with dview.
Message 5 of 6
Anonymous
in reply to: Anonymous

Use them both as Bill said. They are both very useful and powerful tools.

My take on the UCS "problems"
The worst thing that ever happened here was someone imported points with a
UCS set. He set the dwg to World coords, removed the points & reimported in
less than 3 min. Another common "problem" is someone may draw a 3d pline &
they won't see it. They either move & rotate it to the proper location or
redraw it. We have never lost data or a great deal of time from these minor
UCS blunders.

If you like to use UCS's there is nothing wrong with it just keep the
Ucsicon visible at all times so the confusion is avoidable and keep the
staff up to speed.


--
John Mayo, PE
Project Engineer
Conklin Associates
Ramsey, NJ

Civil 3D 2008 SP2, LDT 2008 SP2, Raster Design 2008
P-IV at 3.5 GHz
2 GB Ram
Nvidea Quadro FX w/ 128 MB Ram
wrote in message news:6018336@discussion.autodesk.com...
Do you have people who will try to use ldd commands when the drawing has a
ucs other than world? Then come bug you about why things dont work? Do you
have to fix the problems people create when they change the ucs then do a
profile?
After you start spending most of your time on trouble shooting other peoples
(self created) problems you will probably try to get people to stick with
dview.
Message 6 of 6
Anonymous
in reply to: Anonymous

Sorry Doug, thought I saw the old wfb.

--
John Mayo, PE
Project Engineer
Conklin Associates
Ramsey, NJ

Civil 3D 2008 SP2, LDT 2008 SP2, Raster Design 2008
P-IV at 3.5 GHz
2 GB Ram
Nvidea Quadro FX w/ 128 MB Ram
"John Mayo" wrote in message
news:6022062@discussion.autodesk.com...
Use them both as Bill said. They are both very useful and powerful tools.

My take on the UCS "problems"
The worst thing that ever happened here was someone imported points with a
UCS set. He set the dwg to World coords, removed the points & reimported in
less than 3 min. Another common "problem" is someone may draw a 3d pline &
they won't see it. They either move & rotate it to the proper location or
redraw it. We have never lost data or a great deal of time from these minor
UCS blunders.

If you like to use UCS's there is nothing wrong with it just keep the
Ucsicon visible at all times so the confusion is avoidable and keep the
staff up to speed.


--
John Mayo, PE
Project Engineer
Conklin Associates
Ramsey, NJ

Civil 3D 2008 SP2, LDT 2008 SP2, Raster Design 2008
P-IV at 3.5 GHz
2 GB Ram
Nvidea Quadro FX w/ 128 MB Ram
wrote in message news:6018336@discussion.autodesk.com...
Do you have people who will try to use ldd commands when the drawing has a
ucs other than world? Then come bug you about why things dont work? Do you
have to fix the problems people create when they change the ucs then do a
profile?
After you start spending most of your time on trouble shooting other peoples
(self created) problems you will probably try to get people to stick with
dview.

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report