evanrudefx Posted November 9, 2018 Share Posted November 9, 2018 Suppose I have a line with around 10 points. I can delete a point with removepoint. if (@ptnum == 5) removepoint(geoself(),@ptnum); What if I wanted to delete two or more points? It seems I could just add "or", right? if (@ptnum == 5 || 2) removepoint(geoself(),@ptnum); However, this does not work. What would be the correct way of writing that? Thanks in advance or.hip Quote Link to comment Share on other sites More sharing options...
3dome Posted November 9, 2018 Share Posted November 9, 2018 you have to type @ptnum again: if (@ptnum == 5 || @ptnum == 2) removepoint(geoself(),@ptnum); 1 Quote Link to comment Share on other sites More sharing options...
evanrudefx Posted November 9, 2018 Author Share Posted November 9, 2018 6 minutes ago, 3dome said: you have to type @ptnum again: if (@ptnum == 5 || @ptnum == 2) removepoint(geoself(),@ptnum); thanks : ) I knew it would be something simple Quote Link to comment Share on other sites More sharing options...
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.