Warning: session_start(): open(/var/lib/php/sessions/sess_4rvlelkoenb1ugd32g7hn9errp, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
static Pt randomPt() {
ret randomPt(currentImage().getWidth(), currentImage().getHeight());
}
static Pt randomPt(BufferedImage img) {
ret img == null ? null : randomPt(img.getWidth(), img.getHeight());
}
static Pt randomPt(MakesBufferedImage img) {
ret img == null ? null : randomPt(img.getWidth(), img.getHeight());
}
static Pt randomPt(int w, int h default w) {
ret new Pt(random(w), random(h));
}
static Pt randomPt(Rect r) {
ret r == null ?: Pt(r.x+random(r.w), r.y+random(r.h));
}