Use doubles instead of floats

This commit is contained in:
Clement Jamin 2015-01-06 18:19:07 +01:00
parent 63cab91600
commit 25d16f9dc7
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@
// ----------------------------------------------------------------------------
// kernel
typedef CGAL::Simple_cartesian<float> Kernel;
typedef CGAL::Simple_cartesian<double> Kernel;
// Simple geometric types
typedef Kernel::FT FT;