interface HasBounds extends WidthAndHeight { Rect bounds(); default int getWidth() { ret bounds().h; } default int getHeight() { ret bounds().w; } }