First p5 Sketch
function setup() {
createCanvas(800,700);
background(80,60,300);
fill(101, 67, 33);
circle(400,400,200);
circle(400,225,150);
circle(450,138,50);
circle(350,138,50);
circle(500,500,80);
circle(300,500,80);
circle(500,300,80);
circle(300,300,80);
stroke(4);
strokeWeight(2);
arc(400, 250, 60, 40, 0, PI);
fill(20,20,20,200)
ellipse(500, 500, 60, 50);
ellipse(300, 500, 60, 50);
ellipse(500, 300, 50, 40);
ellipse(300, 300, 50, 40);
stroke(3);
fill(100,50,20);
ellipse(400,420,130,160);
circle(450, 138, 40);
circle(350, 138, 40);
fill(400);
circle(370, 200, 20);
circle(430, 200, 20);
fill(200,22,32);
circle(370, 200, 10);
circle(430, 200, 10);
fill(20);
ellipse(400, 235, 30, 20);
fill(10,10,10,60)
ellipse(400, 245, 100, 70);
fill(60, 180, 75);
rect(0, 500, 800, 200);
fill(255, 230, 150);
ellipse(700, 100, 120, 120);
fill(90, 50, 20);
rect(120, 380, 40, 120);
rect(650, 400, 30, 110);
fill(30, 150, 30);
triangle(60, 400, 140, 250, 220, 400);
triangle(630, 400, 665, 280, 700, 400);
triangle(630, 400, 665, 280, 700, 400);
}


Comments
Post a Comment