Function graham_scan_isize

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

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