Return if this intersects with point.
point
bool intersectsWithVector2(Vector2 point) => min.x <= point.x && // min.y <= point.y && max.x >= point.x && max.y >= point.y;