xxxxxxxxxx
42
let angle = 0;
let maxGrayscale = 255;
function setup() {
createCanvas(400, 400);
angleMode(DEGREES);
}
function draw() {
noStroke();
background(0);
v();
angle += 10;
}
function v() {
translate(width/2, height/2);
rotate(angle);
for (let i = 0; i < maxGrayscale; i +=1){
fill(i);
rotate(angle);
text("I DON'T KNOW", 50, 50);
textSize(8);
text("I DON'T KNOW", 100, 100);
}
function osc(scale) {
if (!scale) {
scale = 0;
}
return abs(sin(frameCount * 0.01 * scale));
}
function mousePressed(){
}
}