xxxxxxxxxx
66
const numRects = 10;
const rectWidth = 200;
const rectHeight = 2;
let rects = [];
let fibb = [0,1,1,2,3,5,8,13,21,34,55,89,144,233,377,610,987,1597,2584];
let play = 1;
const numLines = 3;
let lines = [];
function setup() {
createCanvas(windowWidth, windowHeight);
for (let i = 0; i < numRects; i++) {
rects.push({
x: random(width),
y: random(height),
r: random(12),
g: random(12),
b: random(12)
});
}
for (let i = 0; i < numLines; i++) {
lines.push({
x: random(fibb),
y: random(fibb),
r: random(200*(frameCount%255),255),
g: random(255, -(frameCount%255)),
b: random(90,255)
});
}
background(0);
}
function mouseClicked() {
if(play==1){
play=0;
}else{
play=1;
}
}
function draw() {
if(play==1){
for (let i = 0; i < numRects; i++) {
let randox=random(fibb);
noStroke();
rotate(random(360,randox));
fill(rects[i].r, rects[i].g, rects[i].b,1*rects[i].x/sin(frameCount));
rect(rects[i].x, rects[i].y, rectWidth, rectHeight);
if (random(10) < 1) {
rects[i].x = random(width);
rects[i].y = random(height);
}
}
for (let i = 0; i < numLines; i++) {
stroke(0,0,0,245*sin(frameCount));
fill(lines[i].r, lines[i].g, lines[i].b);
rect(rects[i].x, rects[i].y, random(200), random(width));
if (random(10) < 1) {
lines[i].x = random(width);
lines[i].y = random(height);
}
}
}
}