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.
|
* \return the number of soups read.
|
||||||
*/
|
*/
|
||||||
template<typename PointRanges, typename PolygonRanges, typename ColorRanges>
|
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,
|
PolygonRanges& all_polygons, ColorRanges& all_colors,
|
||||||
std::vector<std::string>& names
|
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;
|
std::vector<std::vector<CGAL::Color> > all_colors;
|
||||||
int result = 0;
|
int result = 0;
|
||||||
int nb_meshes =
|
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);
|
all_points, all_polygons, all_colors, names);
|
||||||
if(nb_meshes < 0 )
|
if(nb_meshes < 0 )
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue