/* built with Studio Sketchpad:
* https://sketchpad.cc
*
* observe the evolution of this sketch:
* https://bard117s14.sketchpad.cc/sp/pad/view/ro.rR8dHcx8UVb/rev.71
*
* authors:
* Keith O'Hara
* license (unless otherwise specified):
* creative commons attribution-share alike 3.0 license.
* https://creativecommons.org/licenses/by-sa/3.0/
*/
/* *
* A Simple Self-Portrait (CMSC117 Assignment 1)
* Keith O'Hara <[email protected]>
* Jan 2014
*
*/
void setup(){
size(100, 162);
frameRate(2);
}
void draw(){
background(196);
strokeWeight(1);
ellipse(25, 25, 25, 25);
ellipse(75, 25, 25, 25);
strokeWeight(2);
line(30, 80, 70, 70 + random(-5, 15));
}