cursor angle
Helo,I was wondering if it is possible to change the cursor angle in version 8. I have a sloped soffit that I want to move some items along and would like to change the cursor angle to make things easier.When i used LT I had a button with that I could select and then type any angle I wanted for the cursor.Is it possible yet to create our own custom buttons controls?Thanks,David
Comments
-
"snapang" is the command you're after and if you want to add a toolbar button just go to Tools\Customize; click on the toolbar tab and right click on the toobar you want to add it to. Then Choose "append tool" and fill in the dialog. I don't know when the functionality was added but it works in 8.1.7!
0 -
Thank you Daniel, works a treat. Hadn't released that customizing the tool bar had been added yet.Thanks again,David
0 -
There is a macro routine with snapang i donea day. I have added it in a autoload file.lspThen when i tape for example S30, my cursorrotates to 30dg...etc...(DEFUN C:S0 () (command "snapang" "0") (princ))(DEFUN C:S30 () (command "snapang" "30") (princ))(DEFUN C:S35 () (command "snapang" "35") (princ))(DEFUN C:S40 () (command "snapang" "40") (princ))(DEFUN C:S45 () (command "snapang" "45") (princ))RSTAS
0