Good Afternoon All,
I am making a macro to create a surface from a cloud of points. The points occur in discrete layers established in the x and z directions. The issue I am having is that if my commands do not select any points, the Macro stops working, where ideally it would just move on to the next SelBox being checked for points. The Macros commands are set up as below:
_SelBox -8.5,-1,-99 -7.5,-1,-99 -7.5,99,-99 -7.5,99,99
_CurveThroughPt _Enter
_SelNone
_SelBox -7.5,-1,-99 -6.5,-1,-99 -6.5,99,-99 -6.5,99,99
_CurveThroughPt _Enter
_SelNone
_SelBox -6.5,-1,-99 -5.5,-1,-99 -5.5,99,-99 -5.5,99,99
_CurveThroughPt _Enter
_SelNone
In this scenario, no points exist in the middle SelBox and the macro stops working. I’ve tried _EnterEnd and _Cancel with no luck.
Thank you for any insight.