/* built with Studio Sketchpad: * https://sketchpad.cc * * observe the evolution of this sketch: * https://bard117s14.sketchpad.cc/sp/pad/view/ro.$9bYM0D0wl6/rev.0 * * authors: * Daniel * license (unless otherwise specified): * creative commons attribution-share alike 3.0 license. * https://creativecommons.org/licenses/by-sa/3.0/ */ // This sketch builds on a prior work, "Daniel Zlatkin Self-Portrait ", created by Daniel // http://bard117s14.sketchpad.cc/sp/pad/view/ro.Adqfl6OtYgJIu2/rev.9 /*Daniel Zlatkin 2/4/14 [email protected] Self-Portrait In this assignment, I attempted to make a bust of myself as a self-portrait using the current tools I know of in processing. Given I had absolutely zero knowledge of computing (besides knowing how to use my computer I suppose) prior to signing up for this course, I am pleased with the fluency I have attained with the points, lines, rectangles, and ellipses I know how to make using the software, and I find using code to make a design a refreshing alternative to merely drawing. That being said, there were still a few things I wish I could do to add to my drawing I was unable to figure out, such as adjusting line thickness. I very much look forward to ironing out such details and gaining new tools to assist in processing in the near future. */ //Background. size(600,600); background(200,0,0); fill(252,196,127); //Head. ellipse(300,300,250,300); fill(139,79,4); //Hair. rect(150,125,300,100); fill(9,25,183); //Body. rect(178.5,450,250,140); fill(255); //Eyes. ellipse(250,270,50,25); fill(152,245,15); ellipse(250,270,20,25); fill(0); ellipse(250,270,7,7); fill(255); ellipse(350,270,50,25); fill(152,245,15); ellipse(350,270,20,25); fill(0); ellipse(350,270,7,7); //Eyebrows. line(225,245,275,245); line(330,245,378,245); //Nose. line(285,330,290,300); line(285,330,300,330); //Mouth. ellipse(300,380,75,50);