Renamed Construct_general_polygon_with_holes_2 => Construct_polygon_with_holes_2

This commit is contained in:
Efi Fogel 2021-11-03 18:32:40 +02:00
parent 04729e8e34
commit 6fd9388c8c
1 changed files with 2 additions and 2 deletions

View File

@ -631,7 +631,7 @@ bool are_holes_and_boundary_pairwise_disjoint
typedef std::pair<Curve_const_iterator, Curve_const_iterator> typedef std::pair<Curve_const_iterator, Curve_const_iterator>
Cci_pair; Cci_pair;
typedef typename Traits_2::Construct_curves_2 Construct_curves_2; typedef typename Traits_2::Construct_curves_2 Construct_curves_2;
typedef typename Traits_2::Construct_general_polygon_with_holes_2 typedef typename Traits_2::Construct_polygon_with_holes_2
Construct_polygon_with_holes_2; Construct_polygon_with_holes_2;
typedef Gps_polygon_validation_visitor<Traits_2> Visitor; typedef Gps_polygon_validation_visitor<Traits_2> Visitor;
@ -698,7 +698,7 @@ bool are_holes_and_boundary_pairwise_disjoint
* whose performance is better than the join(pgn) * whose performance is better than the join(pgn)
*/ */
Polygon_with_holes_2 empty_pwh = construct_pwh_functor(hole); Polygon_with_holes_2 empty_pwh = construct_pwh_functor(hole);
// traits.Construct_general_polygon_with_holes_2 (hole); // traits.Construct_polygon_with_holes_2 (hole);
// Polygon_with_holes_2 empty_pwh(hole); // Polygon_with_holes_2 empty_pwh(hole);
gps.insert(empty_pwh); gps.insert(empty_pwh);
num_of_holes++; num_of_holes++;