From c5174f693c89bcdd0b00835968c5e50d1b4be66f Mon Sep 17 00:00:00 2001 From: Maxime Gimeno Date: Mon, 17 Jun 2019 14:07:27 +0200 Subject: [PATCH] Rename soup function --- Stream_support/include/CGAL/IO/read_3mf.h | 2 +- Surface_mesh/include/CGAL/Surface_mesh/IO/3mf.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Stream_support/include/CGAL/IO/read_3mf.h b/Stream_support/include/CGAL/IO/read_3mf.h index 1d6ee3cd3d4..cbd1dbd6c40 100644 --- a/Stream_support/include/CGAL/IO/read_3mf.h +++ b/Stream_support/include/CGAL/IO/read_3mf.h @@ -600,7 +600,7 @@ int read_from_3mf(const std::string& file_name, PointRanges& all_points, * \return the number of soups read. */ template -int read_soups_from_3mf(const std::string& file_name, PointRanges& all_points, +int read_triangle_soups_from_3mf(const std::string& file_name, PointRanges& all_points, PolygonRanges& all_polygons, ColorRanges& all_colors, std::vector& names ) diff --git a/Surface_mesh/include/CGAL/Surface_mesh/IO/3mf.h b/Surface_mesh/include/CGAL/Surface_mesh/IO/3mf.h index 1fd956c8e76..4ca44a0e890 100644 --- a/Surface_mesh/include/CGAL/Surface_mesh/IO/3mf.h +++ b/Surface_mesh/include/CGAL/Surface_mesh/IO/3mf.h @@ -52,7 +52,7 @@ int read_3mf(const std::string& file_name, std::vector > all_colors; int result = 0; int nb_meshes = - CGAL::read_soups_from_3mf(file_name, + CGAL::read_triangle_soups_from_3mf(file_name, all_points, all_polygons, all_colors, names); if(nb_meshes < 0 ) {