Replaced General_polygon_... => Polygon, Construct_general_polygon_... => Construct_polygon

This commit is contained in:
Efi Fogel 2021-11-03 15:29:23 +02:00
parent 46529b376c
commit c3128da566
1 changed files with 7 additions and 7 deletions

View File

@ -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 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 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; 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 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<Hole_const_iterator, Hole_const_iterator> operator()(const General_polygon_with_holes_2& pol_wh)`. `std::pair<Hole_const_iterator, Hole_const_iterator> operator()(const Polygon_with_holes_2& pol_wh)`.
*/ */
typedef unspecified_type Construct_holes; typedef unspecified_type Construct_holes;
/*! /*!
A functor for checking if polygon with holes has no outer boundary. It uses the operator 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; 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. 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. returns a functor that obtains the outer boundary of a polygon with holes.