returns true if Point is present inside Polygon
true
Point
Polygon
bool isPointInside(Offset i) { return contains(i.dx, i.dy); }