From e4e8a9e7d77c13b37739516dbcda760f25987e5c Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Fri, 25 Jan 2008 09:18:30 +0000 Subject: [PATCH] Use Triangulation_cell_base_with_circumcenter_3 in the default triangulation for Surface_mesher --- .../include/CGAL/Surface_mesh_default_triangulation_3.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Surface_mesher/include/CGAL/Surface_mesh_default_triangulation_3.h b/Surface_mesher/include/CGAL/Surface_mesh_default_triangulation_3.h index fd848d4dc8a..92342759f90 100644 --- a/Surface_mesher/include/CGAL/Surface_mesh_default_triangulation_3.h +++ b/Surface_mesher/include/CGAL/Surface_mesh_default_triangulation_3.h @@ -1,4 +1,4 @@ -// Copyright (c) 2006 INRIA Sophia-Antipolis (France). +// Copyright (c) 2006-2007 INRIA Sophia-Antipolis (France). // All rights reserved. // // This file is part of CGAL (www.cgal.org); you may redistribute it under @@ -30,6 +30,7 @@ // vertex and cell bases #include #include +#include namespace CGAL { namespace Surface_mesher { @@ -43,9 +44,10 @@ namespace CGAL { // vertex and cell types typedef Surface_mesh_vertex_base_3 Vb; typedef Surface_mesh_cell_base_3 Cb; + typedef Triangulation_cell_base_with_circumcenter_3 Cb_with_circumcenter; // triangulation - typedef Triangulation_data_structure_3 Tds; + typedef Triangulation_data_structure_3 Tds; typedef Delaunay_triangulation_3 Tr; public: