Files
processing4/java/examples/Books/Processing Handbook/Illustrations/page_346/page_346.pde
2011-01-26 20:26:16 +00:00

20 lines
224 B
Plaintext
Executable File

// Based on code 39-03 (p. 349)
size(750, 2775);
background(255);
smooth();
strokeWeight(1.0);
for(int i = 20; i < height-50; i += 50) {
filter(BLUR, 1);
line(0, i, width, i+20);
}
saveFrame("page_346.tif");