Need Help with selected surface panel cell

I want to select specific surface panel cells based on a set of indices. I already have the curtain panel indices returned by the Jitter component, and now I’m trying to use those indices to retrieve the corresponding surface cells. Right now I’m not sure how to isolate only those selected surfaces. Any thoughts?


Issue.3dm (109.2 KB)
Issue.gh (21.6 KB)

Hi @Aunnop_Peters,

You’re almost there?

Try using the ClosestPt component:

  1. get the center points of your cells
  2. search using the other points

See example:
Issue.gh (25.6 KB)

Thanks so much @René_Corella !!
Is there a way to select the rest of the surface cells as well?

Yes. Use the same ‘i’ output from the ClosestPt component and connect it to a CullIndex component. This will give you the other panels.

See this diagram: