Rotate Multiple entities around their respective base point - Autocad Trick & tips

preview_player
Показать описание
To download LPS File to Rotate many objects together around their respective base poin
SUBSCRIBE MY CHANNEL

Download File Link :

To know about WipeOut & Xclip Command - Hide or show selected area of object Click on below link

For Auto Numbering Click on Below Link

Auto Dimension to all object click on below link

How to Calculate AREA OF MULTIPLE OBJECT in one command .lps file click on below Link

For more Tip's & Trick Visit My Channel & Subscribe
Рекомендации по теме
Комментарии
Автор

Thank you sir, Could be better if you add Voice as well.

MOHAMMADAFFANFAHIMSIDDIQUI
Автор

;* Rotate Multiple
;* Rotates many entities around their respective basepoints
;* allows selection by AUTOCAD selection sets or SSX.
;* Written by David Husch, January 1991

(defun c:rotmult ()
(prompt "Select Entities to Rotate, <ENTER> for SSX.")
(setq ss (ssget))
(if (not ss) (setq ss (ssx)))
(setq num (sslength ss))
(setq x 0)
(if ss
(if (setq ang (getreal "Enter Rotation Angle: "))
(repeat num
(setq ename (ssname ss x))
(setq elist (entget ename))
(setq pnt (cdr(assoc 10 elist)))
(command "Rotate" ename "" pnt ang)
(setq x (1+ x))
)
)
)
)

aldram
Автор

It would help if you talk in your video

thomasschaper
Автор

Where r link to download that lisp file?

maheshkshirsagar