你好
对不起,标题我拼错了。有人能换一下吗。
我使用entsel选择闭合多边形,使用ssget选择其他对象。
如何过滤出entsel项。
像这样:
- (setq ent_1 (car (entsel "\nPlease select something")))
然后过滤它。我在文档中读到无法过滤实体(代码0)。那么我该如何做到这一点呢?
我微弱的尝试:
- (while (not ent_1)
- (setq ss_1 (ssget '((0 . "LWPOLYLINE") (-4 . "=") (70 . 1))))
- )
|