Function convex_hull

Source
pub fn convex_hull(points: &[Point2<f32>]) -> Vec<Point2<f32>> 
Expand description

Computes the convex hull of a set of 2d points.

The computed convex-hull have its points given in counter-clockwise order.