Revision b080804f09d78cc462e1e0a611a6a3d5ae20e2d0 authored by Mael Rouxel-Labbé on 13 March 2018, 10:14:06 UTC, committed by Mael Rouxel-Labbé on 13 March 2018, 10:14:06 UTC
If the input point set is degenerate, dimension() < 3 is always 'true'
and we will eventually try to read beyond the end of the points vector.

See issue https://github.com/CGAL/cgal/issues/2922
1 parent 2974716
Raw File
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