Function graham_scan_u8

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

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