xxxxxxxxxx
18
let x, y;
function setup() {
createCanvas(720, 400);
// Starts in the middle
x = width / 2;
y = height;
textSize(20);
textAlign(LEFT);
}
function draw() {
background(200);
text(frameCount, 50, height / 2);
text("this is the Math.sin of frameCount divided by 100: " + Math.sin(frameCount/100), 50, 50 + height / 2);
}