Expands the bounds by a delta.
Bounds expand(double delta) { return Bounds( x: x - delta, y: y - delta, width: width + delta * 2, height: height + delta * 2, ); }