static Pt randomPoint(int w, int h) { ret new Pt(random(w), random(h)); } ifclass RGBImage static Pt randomPoint(RGBImage img) { ret randomPoint(img.w(), img.h()); } endif