mirror of https://github.com/CGAL/cgal
Rename soup function
This commit is contained in:
parent
7de29bdd93
commit
c5174f693c
|
|
@ -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
|
||||
)
|
||||
|
|
|
|||
|
|
@ -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 )
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue