Scales the bounds by a factor.
Bounds scale(double factor) { return Bounds( x: x * factor, y: y * factor, width: width * factor, height: height * factor, ); }