Merge pull request #3503 from nivoliev/patch-1

generate a truly Delaunay triangulation
This commit is contained in:
Laurent Rineau 2018-12-10 14:38:12 +01:00
commit 9fe8c299f3
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ int main()
{ 100, 100, 100, 100, 100, 100, 100 } { 100, 100, 100, 100, 100, 100, 100 }
}; };
typedef CGAL::Triangulation<CGAL::Epick_d< CGAL::Dimension_tag<7> > > T; typedef CGAL::Delaunay_triangulation<CGAL::Epick_d< CGAL::Dimension_tag<7> > > T;
T dt(7); T dt(7);
std::vector<T::Point> points; std::vector<T::Point> points;