File:Pattern B.JPG: Revision history

File on Medien Wiki

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

20 November 2014

  • curprev 17:0817:08, 20 November 2014Dora talk contribs 355 bytes +355 int r, g, b; void setup() { size(640, 480); } void draw() { background(255); for(int y=0; y<height; y+=30) for(int x=0; x<width; x+=30) { r=(int)random(150, 255); g=(int)random(0, 255); b=(int)random(40, 255); fill(r, g, b);