From c3128da566135d0a6da7e8deb359c228e9a3b03a Mon Sep 17 00:00:00 2001 From: Efi Fogel Date: Wed, 3 Nov 2021 15:29:23 +0200 Subject: [PATCH] Replaced General_polygon_... => Polygon, Construct_general_polygon_... => Construct_polygon --- .../Concepts/GeneralPolygonSetTraits_2.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Boolean_set_operations_2/doc/Boolean_set_operations_2/Concepts/GeneralPolygonSetTraits_2.h b/Boolean_set_operations_2/doc/Boolean_set_operations_2/Concepts/GeneralPolygonSetTraits_2.h index 1009ff95fbd..86f4cc299da 100644 --- a/Boolean_set_operations_2/doc/Boolean_set_operations_2/Concepts/GeneralPolygonSetTraits_2.h +++ b/Boolean_set_operations_2/doc/Boolean_set_operations_2/Concepts/GeneralPolygonSetTraits_2.h @@ -61,30 +61,30 @@ typedef unspecified_type Construct_polygon_2; /*! a functor that constructs a general polygon with holes from a general polygon and, optionally, a range of holes. It uses the operator -`void operator() (const General_polygon_2& pgn_boundary)` or +`void operator() (const Polygon_2& pgn_boundary)` or -`void operator() (const General_polygon_2& pgn_boundary, HolesInputIterator h_begin, HolesInputIterator h_end)` parameterized by the `HolesInputIterator` type. +`void operator() (const Polygon_2& pgn_boundary, HolesInputIterator h_begin, HolesInputIterator h_end)` parameterized by the `HolesInputIterator` type. */ -typedef unspecified_type Construct_general_polygon_with_holes_2; +typedef unspecified_type Construct_polygon_with_holes_2; /*! A functor for constructing the outer boundary of a polygon with holes. It uses the operator -`General_polygon_2 operator()(const General_polygon_with_holes_2& pol_wh)`. +`Polygon_2 operator()(const Polygon_with_holes_2& pol_wh)`. */ typedef unspecified_type Construct_outer_boundary; /*! A functor for constructing the container of holes of a polygon with holes. It returns the begin/end iterators for the holes It uses the operator -`std::pair operator()(const General_polygon_with_holes_2& pol_wh)`. +`std::pair operator()(const Polygon_with_holes_2& pol_wh)`. */ typedef unspecified_type Construct_holes; /*! A functor for checking if polygon with holes has no outer boundary. It uses the operator -`bool operator()(const General_polygon_with_holes_2& pol_wh)`. +`bool operator()(const Polygon_with_holes_2& pol_wh)`. */ typedef unspecified_type Is_unbounded; @@ -126,7 +126,7 @@ Construct_curves_2 construct_curves_2_object(); /*! returns a functor that constructs a polygon with holes. */ -Construct_general_polygon_with_holes_2 construct_polygon_with_holes_2_object() const; +Construct_polygon_with_holes_2 construct_polygon_with_holes_2_object() const; /*! returns a functor that obtains the outer boundary of a polygon with holes.