![]() |
The function lower_hull_points_2 generates the counterclockwise sequence of extreme points on the lower hull of a given set of input points.
#include <CGAL/convex_hull_2.h>
| ||||
|
| |||
generates the counterclockwise sequence of extreme points
on the lower hull of the points in the range [first,
beyond). The resulting sequence is placed starting at
position result, and the past-the-end iterator for
the resulting sequence is returned.
The sequence starts with the leftmost point;
the rightmost point is not included.
If there is only one extreme point (i.e., leftmost and
rightmost point are equal) the extreme point is reported. Precondition: The source range [first,beyond) does not contain result. |
The default traits class Default_traits is the kernel in which the type InputIterator::value_type is defined.
The different treatment by CGAL::upper_hull_points_2 of the case that all points are equal ensures that concatenation of lower and upper hull points gives the sequence of extreme points.
CGAL::ch_graham_andrew
CGAL::ch_graham_andrew_scan
CGAL::upper_hull_points_2
This function uses Andrew's variant of Graham's scan algorithm [And79, Meh84]. The algorithm has worst-case running time of O(n logn) for n input points.