Do you have time or time has you?
The seasons
Pre-delay: 142 to 25, Tone high: 100 to 58.
Bass: 0.0 to -24.0, Treble: 0.0 to 23.0.
A video showcasing the process.
let x2, y2, x3, y3; function setup() { createCanvas(600, 450); background(10); x2 = random(width); y2 = random(height); x3 = random(width); y3 = random(height); } function draw() { stroke(200, 50); line(width/2, height/2, x2, y2); line(width/2, height/2, x3, y3); x2 += random(-5, 5); y2 += random(-5, 5); x3 -= random(-5, 5); y3 -= random(-5, 5); }
"Saturday morning"
A generative art piece created with p5.js capturing the essence of waking up and knowing your favourite animated show will be on TV.