xxxxxxxxxx
42
let xLeft = 250;
let xRight = 250;
let y = 180;
function setup() {
createCanvas(500, 500);
background(252, 223, 3);
}
function draw() {
eyesmovingplease();
}
function eyesmovingplease(){
for (let i = 0; i < 20; i+=0.0001) {
let x = random(width);
let y = random(height);
let r = 50;
fill(250);
ellipse(x, y, r * 2, r * 2);
fill(random(80, 255), random(80, 255), random(100, 255));
ellipse(random(x - 8, x + 8), random(y - 10, y + 10), 50, 50);
fill(0);
ellipse(random(x - 3, x + 3), random(y - 3, y + 3), 25, 25);
fill(255);
ellipse(x, y - 5, 5, 5);
}
}