Hulls

Meshes.hullFunction
hull(points, method)

Compute the hull of points with given method.

source
Meshes.GrahamScanType
GrahamScan()

Compute the convex hull of a set of points or geometries using the Graham's scan algorithm. See [https://en.wikipedia.org/wiki/Grahamscan] (https://en.wikipedia.org/wiki/Grahamscan).

The algorithm has complexity O(n*log(n)) where n is the number of points.

References

  • Cormen et al. 2009. [Introduction to Algorithms] (https://mitpress.mit.edu/books/introduction-algorithms-third-edition)
source
pset = PointSet(rand(Point, 100, crs=Cartesian2D))
chul = convexhull(pset)

fig = Mke.Figure(size = (800, 400))
viz(fig[1,1], chul)
viz!(fig[1,1], pset, color = :black)
fig
Example block output
box  = Box((-1, -1), (0, 0))
ball = Ball((0, 0), (1))
gset = GeometrySet([box, ball])
chul = convexhull(gset)

fig = Mke.Figure(size = (800, 400))
viz(fig[1,1], chul)
viz!(fig[1,1], boundary(box), color = :gray)
viz!(fig[1,1], boundary(ball), color = :gray)
fig
Example block output