This commit is contained in:
Efi Fogel 2011-02-15 11:21:45 +00:00
parent 62935f5d28
commit 20028f4a80
1 changed files with 2 additions and 2 deletions

View File

@ -13,8 +13,8 @@ OutputIterator compute_intersection_points (InputIterator curves_begin,
{given a range of curves, compute all intersection points between two (or more) {given a range of curves, compute all intersection points between two (or more)
input curves. When the flag \ccc{report_endpoints} is \ccc{true}, input curves. When the flag \ccc{report_endpoints} is \ccc{true},
this function reports all the curve endpoints as well. If a curve this function reports all the curve endpoints as well. If a curve
endpoint is also an intersection point, it is reported once regardless endpoint is also an intersection point, it is reported once (regardless
of the value of the \ccc{report_endpoints} flag. The \ccc{Traits} type of the value of the \ccc{report_endpoints} flag). The \ccc{Traits} type
must be a model of the \ccc{ArrangementTraits_2} concept, such that the must be a model of the \ccc{ArrangementTraits_2} concept, such that the
value-type of \ccc{InputIterator} is \ccc{Traits::Curve_2}, and the value-type of \ccc{InputIterator} is \ccc{Traits::Curve_2}, and the
value-type of \ccc{OutputIterator} is \ccc{Traits::Point_2}. value-type of \ccc{OutputIterator} is \ccc{Traits::Point_2}.