sbool inImage(Pt etc p, BufferedImage img) { ret p != null && img != null && p.x >= 0 && p.y >= 0 && p.x < img.getWidth() && p.y < img.getHeight(); }