Create polygon from interior points

I have multiple points in XY plane:

And I want to obtain the polygon with those points. As follows:

Does anybody know how to do it? I upload the Grasshopper file.
PolygonFromPoints.gh (623.6 KB)


PolygonFromPoints.gh (629.2 KB)

You can create a Delaunay Mesh from those points and remove the big faces, creating holes.

This small script uses Rhino Mesh topology to create a true/false pattern for the faces to remove any face that has an edge longer than a fixed value.

Perfect! Thanks