Merge pull request #6449 from afabri/Polygon-doc_bug-GF

Polygon_2: Document function returning range of holes
This commit is contained in:
Laurent Rineau 2022-03-31 16:58:02 +02:00
commit de8b2e8caf
1 changed files with 12 additions and 0 deletions

View File

@ -29,6 +29,12 @@ typedef unspecified_type Polygon_2;
*/
typedef unspecified_type Hole_const_iterator;
/*!
range type for iterating over holes.
*/
typedef unspecified_type Holes_container;
/// @}
/// \name Creation
@ -73,6 +79,12 @@ Hole_const_iterator holes_begin() const;
*/
Hole_const_iterator holes_end() const;
/*!
returns the range of holes.
*/
const Holes_container& holes() const;
/// @}
}; /* end GeneralPolygonWithHoles_2 */