Jump to content

Rotate 90 in one step??


archkre
 Share

Recommended Posts

Rotating around the center can be an issue..since there could be plenty of objects or only 1 line..the lisp coding would be different for something like that..but if you can manually select the center then the code is pretty simple

 

(defun C:r90 ()

(setq sel (ssget))

(setq cent (getpoint "\nClick the Center point :"))

(command "rotate" sel "" cent "90")

)

 

With this you can select multiple objects and a manual center..the command is r90

 

hope this helps

 

Meher

http://www.mr-cad.com

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...