From 4005e2bc79cf1511bd0b37f7d895100c7432a128 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 4 Sep 2013 11:58:52 +0200 Subject: [PATCH] add missing bool in function call --- Surface_mesh_segmentation/include/CGAL/mesh_segmentation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Surface_mesh_segmentation/include/CGAL/mesh_segmentation.h b/Surface_mesh_segmentation/include/CGAL/mesh_segmentation.h index 4627339ae40..bfe1ddd67ef 100644 --- a/Surface_mesh_segmentation/include/CGAL/mesh_segmentation.h +++ b/Surface_mesh_segmentation/include/CGAL/mesh_segmentation.h @@ -204,7 +204,7 @@ compute_sdf_values_and_segment(const Polyhedron& polyhedron, internal_sdf_map); compute_sdf_values, GeomTraits> - (polyhedron, sdf_property_map, cone_angle, number_of_rays, traits); + (polyhedron, sdf_property_map, cone_angle, number_of_rays, true, traits); return segment_from_sdf_values, SegmentPropertyMap, GeomTraits> (polyhedron, sdf_property_map, segment_ids, number_of_levels, smoothing_lambda, extract_segments, traits);