Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

Can Qhull construct convex hulls and Delaunay triangulations one point at a time?

0
Posted

Can Qhull construct convex hulls and Delaunay triangulations one point at a time?

0

The Qhull library may be used to construct convex hulls and Delaunay triangulations one point at a time. It may not be used for deleting points or moving points. Qhull is designed for batch processing. Neither Clarkson’s randomized incremental algorithm nor Qhull are designed for on-line operation. For many applications, it is better to reconstruct the convex hull or Delaunay triangulation from scratch for each new point. With random point sets and on-line processing, Clarkson’s algorithm should run faster than Qhull. Clarkson uses the intermediate facets to reject new, interior points, while Qhull, when used on-line, visits every facet to reject such points. If used on-line for n points, Clarkson may take O(n) times as much memory as the average off-line case, while Qhull’s space requirement does not change. If you triangulate the output before adding all the points (option ‘Qt’ and procedure qh_triangulate), you must set option ‘Q11’. It duplicates the normals of triangulated facets

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.