void setup() { size(800, 600); background(255); frameRate(10); } void draw() { fill(255, 10); // opacity noStroke(); rect(0, 0, width, height); stroke(random(256), random(256), random(256)); strokeWeight(random(10)); line(0, random(height), width, random(height)); }