

The points are the end points of lines which are in the form of hyperboloid. I want to connect these points to create a polygon. When I tried to connect using poly line , i don’t get a polygon. Please help me with this.
Hi @ICHAN ,
Please upload your GH file.
Given that this is likely a an issue with the points being sorted incorrectly I would do the following:
You should now have the result you are looking for.
try this
there’s two methods. one uses delaunay triangulation, the other orders the points by angle. both methods are really only viable when the points could define a convex polygon.
convex_polyline_from_disordered_points.gh (16.5 KB)
Hi @ICHAN ,
Here’s an easy way (2 nodes):
Model Space (gray lines represent unsorted points order, blue polyline is the shape you seek):
Graph Space:
You can also use Convex Hull or Fit Line in place of Fit Circle, depending on what shapes and sorting methods you want:
I hope that helps
20240420_Hyperboloid_Sorting_Vertices_Response_01a.gh (6.4 KB)