diff --git a/SMDS_3/doc/SMDS_3/examples.txt b/SMDS_3/doc/SMDS_3/examples.txt index fe33a6e5c64..df44fa577ec 100644 --- a/SMDS_3/doc/SMDS_3/examples.txt +++ b/SMDS_3/doc/SMDS_3/examples.txt @@ -1,4 +1,5 @@ /*! \example SMDS_3/c3t3_example.cpp +\example SMDS_3/c3t3_complete_example.cpp \example SMDS_3/tetrahedron_soup_to_c3t3_example.cpp */ diff --git a/SMDS_3/examples/SMDS_3/CMakeLists.txt b/SMDS_3/examples/SMDS_3/CMakeLists.txt index 77d7ba6b6a8..d3485b91965 100644 --- a/SMDS_3/examples/SMDS_3/CMakeLists.txt +++ b/SMDS_3/examples/SMDS_3/CMakeLists.txt @@ -9,4 +9,5 @@ project(SMDS_3_Examples) find_package(CGAL REQUIRED) create_single_source_cgal_program("c3t3_example.cpp") +create_single_source_cgal_program("c3t3_complete_example.cpp") create_single_source_cgal_program("tetrahedron_soup_to_c3t3_example.cpp") diff --git a/SMDS_3/examples/SMDS_3/c3t3_example.cpp b/SMDS_3/examples/SMDS_3/c3t3_complete_example.cpp similarity index 100% rename from SMDS_3/examples/SMDS_3/c3t3_example.cpp rename to SMDS_3/examples/SMDS_3/c3t3_complete_example.cpp diff --git a/SMDS_3/include/CGAL/Simplicial_mesh_triangulation_3.h b/SMDS_3/include/CGAL/Simplicial_mesh_triangulation_3.h new file mode 100644 index 00000000000..b1c033d0990 --- /dev/null +++ b/SMDS_3/include/CGAL/Simplicial_mesh_triangulation_3.h @@ -0,0 +1,51 @@ +// Copyright (c) 2006-2007 INRIA Sophia-Antipolis (France). +// Copyright (c) 2008,2011 GeometryFactory Sarl (France) +// All rights reserved. +// +// This file is part of CGAL (www.cgal.org). +// +// $URL$ +// $Id$ +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial +// +// Author(s) : Laurent Rineau, Stephane Tayeb, Andreas Fabri, Jane Tournois + +#ifndef CGAL_SIMPLICIAL_MESH_TRIANGULATION_3_H +#define CGAL_SIMPLICIAL_MESH_TRIANGULATION_3_H + +#include + +#include +#include +#include +#include + +namespace CGAL +{ + /** + *\ingroup PkgSMDS3Classes + * `Simplicial_mesh_triangulation_3` + * @todo + */ + template + class Simplicial_mesh_triangulation_3 + : public CGAL::Triangulation_3, + CGAL::Simplicial_mesh_cell_base_3, + CGAL::Sequential_tag> + > + {}; +}; + +#endif // CGAL_SIMPLICIAL_MESH_TRIANGULATION_3_H + +