Im writing a VB script at the moment that: selects a point (tPt) in ptList checks distance to each other point in ptList to find the nearest neighbour (nnPt), adds nnPt to tempList, remove nnPT from ptList and finds the next nearest neighbour (nnPt2), adds nnPt2 and itself to tempList, removes nnPt2 and itself from the list and then does the process again until the ptList < 3
I know this is a very cumbersome way to do this and have been looking at other methods but to no avail. Is there any other more efficient way of doing this in VB? Thanks, :D
