xxxxxxxxxx
13
function setup() {
createCanvas(250, 250);
}
function draw() {
background(220);
translate(
width / 2 + (sin(frameCount * 0.1) * 75),
height / 2 + (cos(frameCount * 0.1) * 75));
textAlign(CENTER, CENTER);
textSize(48);
text("word", 0, 0);
}