Point bottomLeft(Point origin)

The point at the intersection of the bottom and left edges of the rectangle described by the given point (which is interpreted as the top-left corner) and this size.

See also Rect.bottomLeft.

Source

Point bottomLeft(Point origin) => new Point(origin.x, origin.y + height);