Skip to content

Instantly share code, notes, and snippets.

@kdoodoo
Created September 11, 2018 08:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kdoodoo/91ebe51d4b6546749e8f7eeeb91b482c to your computer and use it in GitHub Desktop.
Save kdoodoo/91ebe51d4b6546749e8f7eeeb91b482c to your computer and use it in GitHub Desktop.
function setup() {
createCanvas(windowWidth, windowHeight);
// createCanvas(x, y);
background(100,0,220);
// background(r,g,b);
//eyebrow
fill(0,0,0);
ellipse(200, 70, 100, 25);
fill(0,0,0);
ellipse(100, 70, 100, 25);
//eyes
fill(0,0,255);
ellipse(200, 100, 100, 55);
fill(255,0,0);
ellipse(100, 100, 100, 55);
//mouth
fill(100,100,100);
ellipse(150, 200, 100, 55);
//nose
fill(255,200,255);
ellipse(150, 150, 50, 55);
// ellipse(x, y, w, h);
}
function draw() {
// fill(80);
// ellipse(56, 46, 55, 55);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment