mirror of https://github.com/CGAL/cgal
Merge pull request #321 from sloriot/Nef_3-doc_bug_fix
Nef_3: fix minor bug in documentation
This commit is contained in:
commit
d2293994ba
|
|
@ -1185,7 +1185,7 @@ public:
|
||||||
/*!
|
/*!
|
||||||
creates a Nef polyhedron consisting of a single polygon
|
creates a Nef polyhedron consisting of a single polygon
|
||||||
spanned by the list of points in the iterator range
|
spanned by the list of points in the iterator range
|
||||||
`[begin,end)`. If the points do not on a common
|
`[begin,end)`. If the points do not lie on a common
|
||||||
supporting plane, the constructor tries to triangulate
|
supporting plane, the constructor tries to triangulate
|
||||||
the polygon into multiple facets.If the construction does
|
the polygon into multiple facets.If the construction does
|
||||||
not succeed, the empty set is created.
|
not succeed, the empty set is created.
|
||||||
|
|
@ -1193,8 +1193,10 @@ public:
|
||||||
Nef_polyhedron_3(Input_iterator begin, Input_iterator end);
|
Nef_polyhedron_3(Input_iterator begin, Input_iterator end);
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
The iterator range [it, end) defines a set point
|
creates a Nef polyhedron consisting of polylines.
|
||||||
ranges, each of which defines a polyline.
|
The iterator range [it, end) defines a range of polylines.
|
||||||
|
Each polyline is defined as a range of points, first and
|
||||||
|
past-the-end iterators being provided as a `std::pair` of iterators.
|
||||||
*/
|
*/
|
||||||
template <class Forward_iterator>
|
template <class Forward_iterator>
|
||||||
Nef_polyhedron_3(Forward_iterator it, Forward_iterator end,
|
Nef_polyhedron_3(Forward_iterator it, Forward_iterator end,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue