Rename soup function

This commit is contained in:
Maxime Gimeno 2019-06-17 14:07:27 +02:00
parent 7de29bdd93
commit c5174f693c
2 changed files with 2 additions and 2 deletions

View File

@ -600,7 +600,7 @@ int read_from_3mf(const std::string& file_name, PointRanges& all_points,
* \return the number of soups read.
*/
template<typename PointRanges, typename PolygonRanges, typename ColorRanges>
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<std::string>& names
)

View File

@ -52,7 +52,7 @@ int read_3mf(const std::string& file_name,
std::vector<std::vector<CGAL::Color> > 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 )
{