/* built with Studio Sketchpad: * https://sketchpad.cc * * observe the evolution of this sketch: * https://spagnuolo.sketchpad.cc/sp/pad/view/ro.JG9i20EHbU7/rev.1915 * * authors: * Anna Jorgensen * Alika Harm * license (unless otherwise specified): * creative commons attribution-share alike 3.0 license. * https://creativecommons.org/licenses/by-sa/3.0/ */ // Name:Anna Jorgensen // Date:25/10/2016 // Title: Giraffe Face size(300,300); //Background background(0,200,250); //Face outline noStroke(); fill(220,140,15); ellipse(150,160,120,155); noStroke(); fill(220,140,15); ellipse(150,200,150,100); //Eyes noStroke(); fill(0,0,0); ellipse(130,150,15,15); ellipse(170,150,15,15); noStroke(); fill(255,255,255); ellipse(132,148,5,5); ellipse(172,148,5,5); //Nose & Mouth noStroke(); fill(0,0,0); ellipse(140,185,5,5); ellipse(160,185,5,5); strokeWeight(3); stroke(25,0,0); noFill(); arc(150,210,60,35,0,PI); //Neck noStroke(); fill(220,140,15); rect(120,240,60,80); //Ears strokeWeight(7); stroke(220,140,15); fill(77,40,0); triangle(160,100,190,80,200,100); triangle(140,100,110,80,100,100); strokeWeight(7); stroke(220,140,15); fill(77,40,0); arc(190,80,200,100,20,PI); //antlers strokeWeight(7); stroke(77,40,0); noFill(); line(137,82,135,58); line(163,82,165,58); noStroke(); fill(77,40,0); ellipse(135,54,20,20); ellipse(165,54,20,20); //Spots noStroke(); fill(77,40,0); ellipse(198,150,25,25); ellipse(188,120,25,25); ellipse(102,150,25,25); ellipse(112,120,25,25); ellipse(135,261,25,25); ellipse(165,282,20,20); ellipse(135,300,30,30);