Don't wanna be here? Send us removal request.
Photo
//E3 Make a copy
//Daniel Mirete
Code:
//We could use all the items that processing give us, so i decide to take the picture, and upload this one in processing
PImage img;
void setup(){ size(450,300);
img = loadImage("kandinsky.jpg");
}
void draw(){
image(img, 0, 0);
}
0 notes
Video
tumblr
Exercise 4: Move it
noisy - quiet
soft - hard
Code:
int x = 300; int y = x+10;
void setup(){ size(400,400); strokeWeight(2); smooth(); background(0); }
void draw(){ drawCircle(); drawInsideCircle(); }
void drawCircle(){ ellipse(width/2, height/2, 200,200); stroke(255); }
void drawInsideCircle(){ for(int x = 300;x > mouseX; x+= -10){ ellipse (width/2,height/2,x,x); stroke(200); fill(0); }
}
0 notes