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