Alpha_shapes must use P3DTT3 now.

This commit is contained in:
Aymeric PELLE 2015-06-05 18:41:12 +02:00
parent 2abe69b7c0
commit 3aeaa24ef7
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Periodic_3_triangulation_traits_3.h>
#include <CGAL/Periodic_3_Delaunay_triangulation_traits_3.h>
#include <CGAL/Periodic_3_Delaunay_triangulation_3.h>
#include <CGAL/Alpha_shape_3.h>
@ -8,7 +8,7 @@
// Traits
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef CGAL::Periodic_3_triangulation_traits_3<K> PK;
typedef CGAL::Periodic_3_Delaunay_triangulation_traits_3<K> PK;
// Vertex type
typedef CGAL::Periodic_3_triangulation_ds_vertex_base_3<> DsVb;