sketch-01-self portrait
function setup() {
createCanvas(500,500);
background(220);
text("p5.js vers 0.9.0 test.", 10, 15);
}
function draw() {
background(168,255,125)
fill(255,230,0)
ellipse(250,200,500,600)
fill(196,80,71)
ellipse(250,200,400,500)
fill(147,248,234)
ellipse(250,200,330,430)
fill(135,73,146)
ellipse(250,200,270,370)
fill(0,0,0)
ellipse(250,200,230,330) //ellipse(150,150,30,80)
fill(255,163,204)
ellipse(250,200,200,300); //head
fill(255,255,255);
ellipse(190,190,50,30); //eyeball
ellipse(280,190,50,30);
stroke(255,0,0);
strokeWeight(3);
line(320,220,350,190); //frame
fill(180,240,0);
rect(130,200,90,50); //sunglasses
fill(50,158,200);
rect(230,200,90,50);
stroke(111, 78, 55);
strokeWeight(20);
point(190,190); //pupil
point(280,190);
fill(95,29,158);
stroke(0,0,0);
strokeWeight(1);
triangle(230,220,170,240,230,260); //nose
line(200,290,280,290)
noLoop()
}