pub fn graham_scan_isize(
input: &[Point2<isize>],
assume_sorted: bool,
voxel_size: Option<f64>,
) -> Option<Vec<Point2<isize>>>
Expand description
A premade variant of the Graham Scan algorithm function, made for double precision floating-point arithmetic, using isize as the point type.