Don't wanna be here? Send us removal request.
Photo

E4 Daniyah Brandt (mit Bewegung)
void setup () { size (500,500); rectMode (CENTER); } void draw (){ background (147,112,219);
translate (width/2, height/2); pushMatrix();
rotate (radians(frameCount));
scale(2);
fill(250,0,0);
ellipse (0,0,20,20); popMatrix();
save("heiss.jpg");
}
0 notes
Photo

E6
PFont font1;
void setup (){ size(500,500); font1=loadFont("SunriseInternationalDemo-48.vlw");
}
void draw(){ background (255);
textFont(font1,24); fill(0); textAlign(CENTER);
text("Daniyah Brandt",250,150);
fill(69,69,69); text("Daniyah Brandt",250,200);
fill(139,139,131); text("Daniyah Brandt",250,250);
fill(205,205,193); text("Daniyah Brandt",250,300);
fill(238,238,224); text("Daniyah Brandt",250,350); save("name.jpg"); }
0 notes
Photo

E5 Daniyah Brandt (eigentlich animiert)
int drawsteps = 20; void setup() { size(500, 500); noStroke(); fill(255,64,64); smooth(); }
void draw() { background(255); translate(width/2,height/2); rotate(map(millis()%2000,0,2000,0,TWO_PI)); beginShape(); for (float t = 0; t < drawsteps *TWO_PI; t+=PI/360.0 ) { float x = 4 * t * cos(t); float y = 4 * t * sin(t); ellipse(x,y,3,3); } endShape(); //filter(BLUR,3); //noLoop(); save("looping.jpg");
}
0 notes
Photo

E3 Daniyah Brandt
void setup() { size(500,359);
PImage img = loadImage (“tumblr_inline_oezxrcomqd1qd9es1_540.jpg”); image (img, 0, 0); }
0 notes
Photo

//E2 Daniyah Brandt
size (500,500); background (255);
//kopf noStroke(); fill(38); ellipse (250,250,300,150);
//augen fill(110); ellipse(200,200,30,30); ellipse(280,200,30,30);
//kleine augen fill(150); ellipse(200,200,10,10); fill(150); ellipse (280,200,10,10);
//maul fill(110); ellipse (250,250,250,40);
//zähne fill(38); ellipse(250,220,20,40); ellipse(230,220,20,40);
//ohren fill(38); ellipse (145,175,30,110); ellipse( 350,175,30,120);
//innenohren fill(106); ellipse(145,175,10,50); ellipse(350,175,10,50);
//nase fill (106); ellipse (245,215,30,15);
save("hase.jpg");
0 notes
Photo
// E1 Daniyah Brandt
size (500,500); background (255);
fill(120,56,70); stroke (120,56,70); rect(100,0,210,500); line(50,0,100,500); line(500,150,0,250); line (250,0,500,140); save ("capture.png");
0 notes