public Bounds bounds(double x, double y, double width, double height) {
return new BoundingBox(x, y, width, height);
}
public Bounds boundsWithOffset(double x, double y, double width, double height, Insets insets) {
Bounds bounds = bounds(x, y, width, height);
return withOffset(bounds, insets);
}