/* built with Studio Sketchpad: * https://sketchpad.cc * * observe the evolution of this sketch: * https://spagnuolo.sketchpad.cc/sp/pad/view/ro.keXq9cuCbgq/rev.556 * * authors: * Mia Frankowiak * license (unless otherwise specified): * creative commons attribution-share alike 3.0 license. * https://creativecommons.org/licenses/by-sa/3.0/ */ // Name:Mia Frankowiak // Date:25/10/2016 // Title:face size(300,300); //background background(0,200,250); fill(255,0,0); ellipse(0,0,170,170); fill(255,100,100); ellipse(0,0,160,160); fill(255,50,50); ellipse(0,0,150,150); fill(255,25,25); ellipse(0,0,140,140); fill(255,0,0); ellipse(290,290,150,150); fill(255,100,100); ellipse(290,290,140,140); fill(255,50,50); ellipse(290,290,130,130); fill(255,25,25); ellipse(290,290,120,120); //mouth stroke(255); strokeWeight(5); //face base fill(355,215,0); ellipse(150,140,150,150); //face eyes fill(255,255,255); ellipse(130,130,50,50); ellipse(180,130,50,50); fill(0,0,0); ellipse(130,130,20,20); ellipse(180,130,20,20); //mouth stroke(0,200,50); line(185,170,115,170); fill(255,0,0); arc(150,170,75,60,0,PI); //watermelon dots strokeWeight(1); stroke(0); fill(0); ellipse(150,185,5,8); ellipse(140,190,5,9); ellipse(130,180,9,5); ellipse(145,175,5,8); ellipse(160,190,9,5); ellipse(178,180,5,9); ellipse(160,175,7,5);