xxxxxxxxxx
21
let spd = 0.01;
let spd1 = 0.06;
let spd2 = 0.07;
function setup() {
createCanvas(400, 400);
let options = {delay: 0, units: "seconds"};
saveGif('mySketch', 10.47, options);
}
function draw() {
background(229,182,14);
stroke(0);
translate(200, 200);
rotate(frameCount*spd);
fill(noise(frameCount*spd/1.3)*277, noise(frameCount*spd1/1.3)*277, noise(frameCount*spd2/1.3)*277);
circle(0, 0, 50);
line(-noise(frameCount*spd2/1.3)*200, noise(frameCount*spd1/1.3)*200, noise(frameCount*spd2/1.3)*200, -noise(frameCount*spd1/1.3)*200);
line(-noise(frameCount*spd1/1.3)*200, noise(frameCount*spd2/1.3)*200, noise(frameCount*spd/1.3)*200, -noise(frameCount*spd1/1.3)*200);
}