mirror of https://github.com/CGAL/cgal
fix compilation
This commit is contained in:
parent
cc0c46c7ef
commit
4b1b04eb8d
|
|
@ -489,7 +489,7 @@ public Q_SLOTS:
|
||||||
else if (edge_sizing_type == 1)
|
else if (edge_sizing_type == 1)
|
||||||
{
|
{
|
||||||
std::pair<double, double> edge_min_max{min_length, max_length};
|
std::pair<double, double> edge_min_max{min_length, max_length};
|
||||||
PMP::Adaptive_sizing_field adaptive_sizing_field(error_tol
|
PMP::Adaptive_sizing_field<Face_graph> adaptive_sizing_field(error_tol
|
||||||
, edge_min_max
|
, edge_min_max
|
||||||
, faces(*selection_item->polyhedron())
|
, faces(*selection_item->polyhedron())
|
||||||
, *selection_item->polyhedron());
|
, *selection_item->polyhedron());
|
||||||
|
|
@ -572,7 +572,7 @@ public Q_SLOTS:
|
||||||
else if (edge_sizing_type == 1)
|
else if (edge_sizing_type == 1)
|
||||||
{
|
{
|
||||||
std::pair<double, double> edge_min_max{min_length, max_length};
|
std::pair<double, double> edge_min_max{min_length, max_length};
|
||||||
PMP::Adaptive_sizing_field adaptive_sizing_field(error_tol
|
PMP::Adaptive_sizing_field<Face_graph> adaptive_sizing_field(error_tol
|
||||||
, edge_min_max
|
, edge_min_max
|
||||||
, faces(*selection_item->polyhedron())
|
, faces(*selection_item->polyhedron())
|
||||||
, *selection_item->polyhedron());
|
, *selection_item->polyhedron());
|
||||||
|
|
@ -732,7 +732,7 @@ public Q_SLOTS:
|
||||||
else if (edge_sizing_type == 1)
|
else if (edge_sizing_type == 1)
|
||||||
{
|
{
|
||||||
std::pair<double, double> edge_min_max{min_length, max_length};
|
std::pair<double, double> edge_min_max{min_length, max_length};
|
||||||
PMP::Adaptive_sizing_field adaptive_sizing_field(error_tol
|
PMP::Adaptive_sizing_field<Face_graph> adaptive_sizing_field(error_tol
|
||||||
, edge_min_max
|
, edge_min_max
|
||||||
, faces(*poly_item->polyhedron())
|
, faces(*poly_item->polyhedron())
|
||||||
, *poly_item->polyhedron());
|
, *poly_item->polyhedron());
|
||||||
|
|
@ -990,7 +990,7 @@ private:
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
std::pair<double, double> edge_min_max{min_length_, max_length_};
|
std::pair<double, double> edge_min_max{min_length_, max_length_};
|
||||||
PMP::Adaptive_sizing_field adaptive_sizing_field(error_tol_
|
PMP::Adaptive_sizing_field<Face_graph> adaptive_sizing_field(error_tol_
|
||||||
, edge_min_max
|
, edge_min_max
|
||||||
, faces(*poly_item->polyhedron())
|
, faces(*poly_item->polyhedron())
|
||||||
, *poly_item->polyhedron());
|
, *poly_item->polyhedron());
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue