Uploads by Dora

This special page shows all uploaded files.

File list
Date Name Thumbnail Size Description Versions
17:09, 20 November 2014 Hexagon dhora changes.JPG (file) 108 KB float r, g, b; void setup(){ size(500,500); background(255); } void draw(){ for(int x=0; x<500; x+=60+60*sin(PI/6)){ for(int y=0; y<500; y+=60*cos(PI/6)){ drawHexagon(x, y, 30); drawHexagon(x+30+30*sin(PI/6), y+30*cos(PI/6), 30); } } } void d 1
17:08, 20 November 2014 Pattern B.JPG (file) 81 KB 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); 1
17:07, 20 November 2014 Pattern A.JPG (file) 59 KB 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) 1
17:06, 20 November 2014 Flower pattern.JPG (file) 83 KB void setup() { size(640, 640); strokeWeight(2); stroke(219, 84, 35); fill(0, 48, 77, 95); } void draw() { background(255); translate(width/2, height/2); for (int i = 0; i < 360; i+=36) { float x = sin(radians(i)) * 320; fl 1