Function graham_scan_usize

Source
pub fn graham_scan_usize(
    input: &[Point2<usize>],
    assume_sorted: bool,
    voxel_size: Option<f64>,
) -> Option<Vec<Point2<usize>>>
Expand description

A premade variant of the Graham Scan algorithm function, made for double precision floating-point arithmetic, using usize as the point type.