pub fn are_multiple_points_in_polygon(
points: &[Point2<f32>],
polygon: &[Point2<f32>],
) -> Option<Vec<bool>>
Expand description
A premade variant of the multiple point-in-polygon algorithm function, made for single precision floating-point arithmetic.