xxxxxxxxxx
29
function setup() {
createCanvas(1920, 1080);
strokeWeight(4);
strokeCap(PROJECT);
angleMode(DEGREES);
noLoop();
//frameRate(3);
}
function draw() {
background(random(255),random(255),random(255));
translate(width/2,height/2);
for (let t=0; t<30; t++) {
stroke(random(255),random(255),random(255));
for (let i=0; i<360; i++) {
push();
rotate(i);
line(random(40,100),0,random(100,500),0);
pop();
}
}
}
function mousePressed() {
let fs = fullscreen();
fullscreen(!fs);
}