Warning: session_start(): open(/var/lib/php/sessions/sess_9tl6au5u6d8kov3aivi2gqt0pn, 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 Animation reproduceRasterBars(IBWIntegralImage ii) {
var thinImage = scaledBWImageFromBWIntegralImage_withMeta(ii, 1, ii.getHeight());
var streaks = streaksOfRepeatingElements(listFromFunction(thinImage.getHeight(), y -> thinImage.getInt(0, y)));
print(+streaks);
ret new Animation(ii.getWidth(), ii.getHeight()) {
void paint {
for (streak : streaks)
fillRect(g, 0, streak.a.start, w, l(streak.a), grayToColor(streak.b));
}
};
}