// Copyright (c) 2005 Rijksuniversiteit Groningen (Netherlands) // All rights reserved. // // This file is part of CGAL (www.cgal.org). // You can redistribute it and/or modify it under the terms of the GNU // General Public License as published by the Free Software Foundation, // either version 3 of the License, or (at your option) any later version. // // Licensees holding a valid commercial license may use this file in // accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // // $URL$ // $Id$ // SPDX-License-Identifier: GPL-3.0+ // // // Author(s) : Nico Kruithof #ifndef CGAL_MAKE_UNION_OF_BALLS_MESH_3_H #define CGAL_MAKE_UNION_OF_BALLS_MESH_3_H #include #include #include #include #include #include namespace CGAL { template void make_union_of_balls_mesh_3(Polyhedron_3 &p, WP_iterator begin, WP_iterator end, int nSubdivisions=0) { typedef typename WP_iterator::value_type Weighted_point; typedef typename Kernel_traits::Kernel K; typedef Skin_surface_traits_3 Traits; typedef Union_of_balls_3 Union_of_balls; Union_of_balls union_of_balls(begin, end); CGAL::mesh_union_of_balls_3(union_of_balls, p); CGAL::subdivide_union_of_balls_mesh_3(union_of_balls, p, nSubdivisions); } } //namespace CGAL #endif // CGAL_MAKE_UNION_OF_BALLS_MESH_3_H