ajs Posted April 17, 2009 Posted April 17, 2009 Elementary question here I'm sure: Can anyone help me with the syntax to add an "or" condition to a selection set? I want to have the following selection set select by lines or arcs (both on OUTCUT layer) as opposed to just lines. (setq ERASE_LINE(ssget "_X" '((0 . "LINE")(8 . "OUTCUT")))) Thanks very much. AJS Quote
jammie Posted April 17, 2009 Posted April 17, 2009 Hey ajs Just to get you started off (setq ERASE_LINE(ssget "_X" '((0 . "LINE,ARC")(8 . "OUTCUT")))) The comma allows selection of both the lines and arcs Quote
jammie Posted April 17, 2009 Posted April 17, 2009 Your welcome AJS, Glad to help! See the attached links for a few more ways of achieving the same result using selection set filters. I am sure there are a few more good links on this site as well http://afralisp.net/lispa/lisp19.htm http://afralisp.net/lisp/filter.htm Quote
Lee Mac Posted April 17, 2009 Posted April 17, 2009 Just for completeness, if you really wanted to use the "OR": (ssget "_X" '((8 . "OUTCUT") (-4 . "<OR") (0 . "LINE") (0 . "ARC") (-4 . "OR>"))) Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.