// Copyright (c) 2005 Rijksuniversiteit Groningen (Netherlands) // All rights reserved. // // This file is part of CGAL (www.cgal.org). // // $URL: https://github.com/CGAL/cgal/blob/v5.2/Skin_surface_3/include/CGAL/make_skin_surface_mesh_3.h $ // $Id: make_skin_surface_mesh_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) : Nico Kruithof #ifndef CGAL_MAKE_SKIN_SURFACE_MESH_3_H #define CGAL_MAKE_SKIN_SURFACE_MESH_3_H #include #include #include #include #include #include namespace CGAL { template void make_skin_surface_mesh_3(Polyhedron_3 &p, WP_iterator begin, WP_iterator end, double shrink_factor=.5, int nSubdivisions=0, bool grow_balls=true) { if (shrink_factor == 1) { make_union_of_balls_mesh_3(p,begin,end,nSubdivisions); } typedef typename WP_iterator::value_type Weighted_point; typedef typename Kernel_traits::Kernel K; typedef Skin_surface_traits_3 Traits; typedef Skin_surface_3 Skin_surface; Skin_surface skin_surface(begin, end, shrink_factor, grow_balls); mesh_skin_surface_3(skin_surface, p); subdivide_skin_surface_mesh_3(skin_surface, p, nSubdivisions); } } //namespace CGAL #endif // CGAL_MAKE_SKIN_SURFACE_MESH_3_H