pub fn convex_hull(points: &[Point2<f32>]) -> Vec<Point2<f32>>
Computes the convex hull of a set of 2d points.
The computed convex-hull have its points given in counter-clockwise order.