static BufferedImage renderAll(int w, int h, Iterable drawables) { var img = whiteImage(w, h); fOr (d : drawables) d?.drawOn(img); ret img; } static BufferedImage renderAll(Iterable drawables, WidthAndHeight size) { ret renderAll(size.w(), size.h(), drawables); }