// Copyright (c) 2022 INRIA Sophia-Antipolis (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) : Julian Stahl #ifndef CGAL_TMC_3_H #define CGAL_TMC_3_H #include #include #include namespace CGAL { namespace Isosurfacing { template void make_triangle_mesh_using_tmc(const Domain_& domain, const typename Domain_::FT iso_value, PointRange& points, PolygonRange& polygons) { // static_assert(Domain_::CELL_TYPE & CUBICAL_CELL); internal::TMC_functor functor(domain, iso_value, points, polygons); domain.iterate_cells(functor, Concurrency_tag()); } } // namespace Isosurfacing } // namespace CGAL #endif // CGAL_TMC_3_H