Selecting specific series of points from data tree

"Hi everyone,

I am struggling to select only the right-sided series of points from a mesh. Can anyone help me with this? Also, what strategy would you suggest as an efficient approach?"
Selecting points.gh (101.0 KB)

Here are two options:

  1. extract the x coordinates and filter the points whose x coordinate is not 0.
  2. calculate the dot product between the face normals and the x vector. If this is 1, the face points towards positive x

Selecting points mrtn.gh (93.2 KB)

1 Like

Thank you, Martin! Your solution worked perfectly and solved my problem. Really appreciate it.

1 Like