https://github.com/CGAL/cgal
Raw File
Tip revision: efb6794a6c8f29c9b92b850eef9065d9bae47f8c authored by Mael Rouxel-Labbé on 12 March 2018, 10:14:23 UTC
Add a test
Tip revision: efb6794
TODO
-------------------------------------------------------
 RANDOM DESIGN IDEAS extracted from Convex_hull.h
-------------------------------------------------------
- Use a policy tag to choose for incremental with inserts only or
  incremental with  removals and inserts.
  In the first case: use Triangulation for storage.
  In the second case: use Delaunay !
    In this second case, we must keeps the points that are inserted in the hull,
    as they may become part of the boundary later on, when some points are removed.
- Constructor with range argument uses quickhull.
back to top