xxxxxxxxxx
//Project by Sam Piccone
var variable1 = 0;
function setup() {
createCanvas(1000,1000);
background(100);
//cricle
}
function draw() {
background(100,50,120);
fill(250,variable1+1,250)
ellipse(variable1,500,250,250);
variable1=variable1+3;
// right eye
fill(0,250,110);
ellipse(variable1+40,440,50,50);
//nose/mouth
ellipse(variable1,525,20,20);
//left eye
fill(0,250,110);
ellipse(variable1-40,440,50,50);
}