// Copyright (c) 2006-2007 INRIA Sophia-Antipolis (France). // All rights reserved. // // This file is part of CGAL (www.cgal.org). // // $URL: https://github.com/CGAL/cgal/blob/v5.2/Surface_mesher/include/CGAL/Surface_mesh_default_triangulation_3.h $ // $Id: Surface_mesh_default_triangulation_3.h 0779373 2020-03-26T13:31:46+01:00 Sébastien Loriot // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Laurent Rineau #ifndef CGAL_SURFACE_MESH_DEFAULT_TRIANGULATION_3_H #define CGAL_SURFACE_MESH_DEFAULT_TRIANGULATION_3_H #include #include // traits class #include #include // Delaunay #include // vertex and cell bases #include #include #include namespace CGAL { namespace Surface_mesher { template class Surface_mesh_default_triangulation_3_generator { // traits class typedef Robust_circumcenter_traits_3 K; // vertex and cell types typedef Surface_mesh_vertex_base_3 Vb; typedef Surface_mesh_cell_base_3 Cb; typedef Delaunay_triangulation_cell_base_with_circumcenter_3 Cb_with_circumcenter; // triangulation typedef Triangulation_data_structure_3 Tds; typedef Delaunay_triangulation_3 Tr; public: // result type typedef Tr Type; typedef Type type; }; // end Surface_mesh_default_triangulation_3_generator } // end Surface_mesher typedef Surface_mesher::Surface_mesh_default_triangulation_3_generator<>::Type Surface_mesh_default_triangulation_3; } // end namespace CGAL #include #endif // CGAL_SURFACE_MESH_DEFAULT_TRIANGULATION_3_H