Skip to main content

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?

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