Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,17 @@
|
|||
integer i, h, j, w;
|
||||
file f;
|
||||
|
||||
w = 640;
|
||||
h = 320;
|
||||
|
||||
f.create("out.ppm", 00644);
|
||||
f.form("P6\n~ ~\n255\n", w, h);
|
||||
|
||||
j = 0;
|
||||
do {
|
||||
srand(j >> 4);
|
||||
i = 0;
|
||||
do {
|
||||
16.times(f_bytes, f, drand(255), drand(255), drand(255));
|
||||
} while ((i += 16) < w);
|
||||
} while ((j += 1) < h);
|
||||
Loading…
Add table
Add a link
Reference in a new issue