xxxxxxxxxx
23
var hsbMode = true;
function setup() {
createCanvas(400, 400);
noStroke();
}
function draw() {
var t = millis() * 0.001;
for(var i=0; i<2000; i++) {
var x = width/2 + width/2 * sin(i + t);
var y = i % height;
fill((i + t) % 256, i % 200, i % 150);
rect(x, y, 50, 50);
}
fill(255);
rect(0, height - 10, frameRate() / 60 * width, 4);
}
function mousePressed() {
hsbMode = !hsbMode;
console.log("hsbMode", hsbMode);
colorMode(hsbMode ? HSB : RGB);
}