Function graham_scan_u64

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

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