File:Pattern A.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:0717:07, 20 November 2014Dora talk contribs 314 bytes +314 int r, g, b; void setup() { size(600, 600); noStroke(); for(int y=0; y<height; y+=20) for(int x=0; x<width; x+=30) { r=(int)random(28); g=(int)random(162); b=(int)random(89); fill(r, g, b); ellipse(x, y, 30, 20); rect (x, y, 30, 20)