Hello, I can’t find the right way to sort a list of points so that a linear line comes out in the following node CurveNurbs.ByPoint. The points are joined at “random”. If anyone knows how to solve the problem without using a script I would be grateful.
Line.ByBestFitThroughPoints should work if they are actually in a line. If not you could try sorting this points by their parameter value of the line. You can also try with a circle of that doesn’t work.
That said: this looks like a mess of a point cloud and you’re likely going to have to be much more selective about what you’re after.
A dataset is likely required to help determine options for your path forward.
thanks, let me explain better, yes it is a point cloud, in reality I removed the preview of a previous step because I wanted the result of the curveNurbs.by point to be seen but the work that was done previously includes a point cloud in which a solid is inserted and then intersected with geometry intersect, then I filter the data with the Filterboolmask node and end up with the theoretically filtered points. then from those points I should generate a path through a b-spline. I will try to do what you recommended.