Function graham_scan_usize

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

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