xxxxxxxxxx
17
function setup() {
createCanvas(1920/2, 1080/2);
background('#fbfbfb');
}
function draw() {
const min = 0;
const max = 255;
const x = random(width);
const y = random(height)
//stroke(random(min, max), random(min, max), random(min, max));
stroke(random(min, max), random(min, max));
line(x - width, y + width, x + width, y - width);
line(frameCount - width, width, frameCount + width, - width);
}