mirror of https://github.com/CGAL/cgal
fix namespace
This commit is contained in:
parent
863c86edfc
commit
e989bb56b0
|
|
@ -18,6 +18,7 @@
|
|||
#include <CGAL/number_utils.h>
|
||||
|
||||
#include <CGAL/Polygon_mesh_processing/repair_polygon_soup.h>
|
||||
#include <CGAL/boost/graph/named_params_helper.h>
|
||||
|
||||
#include <CGAL/Fraction_traits.h>
|
||||
#include <CGAL/Lazy_exact_nt.h>
|
||||
|
|
@ -105,7 +106,7 @@ struct Triangle_soup_fixer
|
|||
using parameters::get_parameter;
|
||||
using parameters::choose_parameter;
|
||||
|
||||
typedef typename CGAL::Polygon_mesh_processing::internal::GetPolygonGeomTraits<PointRange, PolygonRange, NamedParameters>::type Traits;
|
||||
typedef typename GetPolygonGeomTraits<PointRange, PolygonRange, NamedParameters>::type Traits;
|
||||
Traits traits = choose_parameter(get_parameter(np, internal_np::geom_traits), Traits());
|
||||
|
||||
CGAL::Polygon_mesh_processing::merge_duplicate_points_in_polygon_soup(points, polygons, np);
|
||||
|
|
@ -140,7 +141,7 @@ struct Triangle_soup_fixer<PointRange, PolygonRange, Indexes_range< std::array<P
|
|||
using parameters::get_parameter;
|
||||
using parameters::choose_parameter;
|
||||
|
||||
typedef typename CGAL::Polygon_mesh_processing::internal::GetPolygonGeomTraits<PointRange, PolygonRange, NamedParameters>::type Traits;
|
||||
typedef typename GetPolygonGeomTraits<PointRange, PolygonRange, NamedParameters>::type Traits;
|
||||
Traits traits = choose_parameter(get_parameter(np, internal_np::geom_traits), Traits());
|
||||
|
||||
CGAL::Polygon_mesh_processing::merge_duplicate_points_in_polygon_soup(points, polygons, np);
|
||||
|
|
|
|||
Loading…
Reference in New Issue