static BWImage bwImageFromFunction(int w, int h, IF2 f) { BWImage img = new(w, h); for y to h: for x to w: img.setPixel(x, y, f.get(x, y)); ret img; }