You would probably need to use the near points function to find the nearest point and then run a loop for each point that would create a line between the two. If you want a continuous line to the next closest point you probably would also need to then delete the point after the line is created because it's always going to find the closest point which would create duplicate lines
Amazing! Thanks!
Glad you found it useful
thanks. simple & effective ;)
Nice explanation !
How about if you throw a sort node, will the lines be re arranged ?
No idea. Feel free to try it out and let me know. I don't know if I still have that project file.
i'm trying to get this to create a regularly-spaced grid (like a 3D lattice) - were you able to figure it out?
how do we connect points to the nearest point?
You would probably need to use the near points function to find the nearest point and then run a loop for each point that would create a line between the two. If you want a continuous line to the next closest point you probably would also need to then delete the point after the line is created because it's always going to find the closest point which would create duplicate lines