pub fn point_in_polygon<P1: GetXY, P2: GetXY>( point: &P1, polygon: &[Vec<P2>], ) -> InsideResult
A Robust point in polygon test
point
polygon
true if the point is in the polygon, 0 if on the boundary, false otherwise