xxxxxxxxxx
45
function setup() {
//the face
createCanvas(400, 400);
strokeWeight(30);
fill(255, 204, 0);
stroke(0);
ellipse(200, 200, 300, 300);
// the eyes
fill(0);
ellipse(180, 160, 10, 10);
ellipse(220, 160, 10, 10);
// the mouth
noFill();
strokeWeight(30);
line(210, 250, 180, 250);
}
function draw() {
// background(220);
textSize(15);
fill(0);
strokeWeight(0.1);
let cool_c = "a confused circle a confused circle a confused circle a confused circle a confused circle a confused circle a confused circle a confused circle a confused circle a confused circle a confused circle a confused circle";
x = -400;
for (let y = 7; y <= 500; y += 17) {
x += 10;
text(cool_c, x, y);
}
}