2627| 14
|
[讨论] 请教关于如何获取镜像后的图元 ! |
5明经币
最佳答案你感觉这样改造镜像命令好吗?就是每次都必须运行多余的代码,不管你要不要后续操作,上面那个多好啊,想要操作再搞
(defun c:tt5 (/ enlast entx ss ss_new)
(setq ss (ssget) enlast (entlast))
(command "MIRROR" ss "" pause pause pause)
(setq ss_new (ssadd))
(if (while (setq entx (entnext enlast)) (setq ss_new (ssadd entx ss_new) enlast entx)) (setq ss ss_new))
(command "select" ss "")
(princ)
)
| ||
| ||
| ||
| ||
| ||
| ||
| ||
| ||