Returns true if the point (x, y) is inside this rectangle.
true
bool contains(double x, double y) => x >= left && x < right && y >= top && y < bottom;