Warning: session_start(): open(/var/lib/php/sessions/sess_vsd9u8gv10ad75gkjgh4hrblbn, 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
// m = cols, n = rows
static L tileRects(int w, int h, int m, int n) {
new L tiles;
for y to n: {
int y1 = y*h/n, y2 = (y+1)*h/n;
for x to m: {
int x1 = x*w/m, x2 = (x+1)*w/m;
Rect r = rectFromPoints(x1, y1, x2, y2);
tiles.add(r);
}
}
ret tiles;
}