1

I have two geometry node objects. One with ~300 and one with ~90.

I would like to take ~90 instances from the ~300 object and move them to the locations of the ~90 in the other object. But I can't see to find how to randomly grab a specific number.

TheJeran
  • 2,601
  • 1
  • 8
  • 24

1 Answers1

4

This looks to me to reduce exactly to a shuffle-problem, as discussed here. Whichever method you choose, having shuffled the indices, select all instances whose index is less than n, the number you want to move. Having separated the selection, it acquires a new, [0 -> n-1] set of indices:

enter image description here

... and can be aimed at the positions of the [0 -> n-1] index-bearing elements of your target:

enter image description here

Robin Betts
  • 76,260
  • 8
  • 77
  • 190