Warning: session_start(): open(/var/lib/php/sessions/sess_o8t654vg6t7m56rqto8fq05h95, 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 LL gridOfDoubleRects3(double w, double h, int cols, int rows) {
ret gridOfDoubleRects3(DoubleRect(0, 0, w, h), cols, rows);
}
static LL gridOfDoubleRects3(DoubleRect r, int cols, int rows) {
new LL l;
for row to rows: {
new L line;
int y1 = r.y+r.h*row/rows;
int y2 = r.y+.h*(row+1)/rows;
for col to cols: {
int x1 = r.x+r.w*col/cols;
int x2 = r.x+r.w*(col+1)/cols;
line.add(DoubleRect(x1, y1, x2-x1, y2-y1));
}
l.add(line);
}
ret l;
}