xxxxxxxxxx
24
//original here https://editor.p5js.org/kll/sketches/a87kXow2s 30
var i = 0;
function setup() {
createCanvas(400, 400);
colorMode(HSB,100);
}
function draw() {
translate(width/2,height/2);
if (i < 1000){
push();
rotate(TAU*i/1000);
var c = color(i/10.0,100,100);
stroke(c);
line(0,0,100,0);
pop();
i++;
}
}