xxxxxxxxxx
33
function setup() {
createCanvas(windowWidth, windowHeight);
rectMode(CENTER);
angleMode(DEGREES);
}
function draw(){
// var c = color(random(255,200),random(250,220),75);
// var randX = random(width);
// var randY = random(height)
// createFace(randX,randY, c);
}
function createFace(faceX, faceY, faceFill){
//face
fill(faceFill);
ellipse(faceX, faceY, 100, 100);
//eyes
fill(5);
ellipse(faceX-20,faceY-20,15,15);
ellipse(faceX+20,faceY-20,15,15);
//mouth
arc(faceX, faceY, 80, 80, random(0,45), random(140,180),CHORD);
}
function mousePressed(){
var c = color(random(255,200),random(250,220),75);
createFace(mouseX,mouseY, c);
}