xxxxxxxxxx
20
/*
* Creative Coding Workshop #3 Demo - Repeated Circles Forming Noise Path - Animated with Noise
*
* Jack B. Du (github@jackbdu.com)
*/
function setup() {
createCanvas(400, 400);
// specify a seed to generate the fixed noise space
noiseSeed(100);
}
function draw() {
background(220);
for (let i = 0; i < 400; i++) {
circle(map(noise(i/100,frameCount/50), 0, 1, 100, 300),
i,
50);
}
}