Function is_single_point_in_polygon

Source
pub fn is_single_point_in_polygon(
    point: &Point2<f32>,
    polygon: &[Point2<f32>],
) -> bool
Expand description

A premade variant of the single point-in-polygon algorithm function, made for single precision floating-point arithmetic.