pub fn convex_hull<T>(points_slice: &[Point<T>]) -> Vec<Point<T>>
where T: NumCast + Copy + Ord,
Expand description

Finds the convex hull of a set of points, using the Graham scan algorithm.