Merge pull request #4605 from lrineau/Triangulation_2-CDT_plus_2_doc_typo-GF

CT_plus_2: fix a pair of typos in the documentation
This commit is contained in:
Sebastien Loriot 2020-03-31 15:52:08 +02:00 committed by GitHub
commit 652a503509
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -245,9 +245,9 @@ Inserts a polyline defined by the points in the range `[first,last)`
and returns the constraint id.
The polyline is considered as a closed curve if the first and last point are equal or if `close == true`. This enables for example passing the vertex range of a `Polygon_2`.
When traversing the vertices of a closed polyline constraint with a `Vertices_in_constraint_iterator` the first and last vertex are the same.
In case the range is empty `Constraint_id()`is returned.
In case the range is empty `Constraint_id()` is returned.
In case all points are equal the point is inserted but no constraint,
and `Constraint_id()`is returned.
and `Constraint_id()` is returned.
\tparam PointIterator must be an `InputIterator` with the value type `Point`.
*/
template < class PointIterator>