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