Triangulation_2: Fix documentation of a typedef

This commit is contained in:
Andreas Fabri 2019-08-13 02:08:42 -07:00
parent a085c93c38
commit 8802f9877b
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ triangulation, which is a pair of a face handle and an index.
The triangulation also enables the retrieval of the set The triangulation also enables the retrieval of the set
of subconstraints of the triangulation (not ordered along constraints). of subconstraints of the triangulation (not ordered along constraints).
It further enables the retrieval of the set of input constraints that induce a subconstraint,. It further enables the retrieval of the set of input constraints that induce a subconstraint.
As it is straightforward to obtain a subconstraint from a constrained edge `e`, As it is straightforward to obtain a subconstraint from a constrained edge `e`,
one can obtain the input constraints which induce `e`. one can obtain the input constraints which induce `e`.
@ -86,7 +86,7 @@ typedef std::pair<Vertex_handle, Vertex_handle> Subconstraint;
An iterator An iterator
to visit all the subconstraints of the triangulation. to visit all the subconstraints of the triangulation.
The order of visit is undefined. The order of visit is undefined.
The value type of this iterator is `Subconstraint` The value type of this iterator is `std::pair<Subconstraint,std::list<Context>*>`
corresponding to the vertices of the corresponding to the vertices of the
subconstraint. subconstraint.
*/ */