generate functionSun, 13 Nov 2022
check if a point is inside of a polygon
bool is_inside(Point p, Polygon poly) { if (poly.contains(p)) Console.WriteLine("Point is inside of the polygon") else Console.WriteLine("Point is not inside of the polygon") }