archkre Posted April 10, 2006 Share Posted April 10, 2006 Is there any Autolisp or script to make rotate selected entity or entities 90 degrees around its center? Thanks a lot Link to comment Share on other sites More sharing options...
MrCAD Posted April 11, 2006 Share Posted April 11, 2006 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now