xxxxxxxxxx
18
let inconsolata;
function preload() {
}
function setup() {
createCanvas(600, 600, WEBGL);
textFont('Georgia');
textSize(width / 3);
textAlign(CENTER, CENTER);
}
function draw() {
background(205, 102, 94);
rotateX(frameCount * 0.01);
rotateY(frameCount * 0.01);
torus(100, 50);
text('p5.js', 0, 0);
}