Question

NeighborFinder close candidate list - is is ordered?

  • 26 May 2017
  • 1 reply
  • 1 view

Badge +2

When multiple neighbors to find are specified, is the resulting list ordered by proximity or not? That is, is the nearest neighbor at position 0 in the list, next nearest at position 1, and so on?


1 reply

Badge +1

Yes, the result is normally ordered by proximity, but you can sort the list if you want (ListSorter)! The element index of the list is like you said : 0,1,2,3 and so on!

Reply