xxxxxxxxxx
27
let t=0;
let N=200;
let i=0;
function setup() {
createCanvas(800, 600);
background(255,255,255);
translate(400,300);
circle(100,0,200);
push();
strokeWeight(3);
point(-200,0)
pop();
}
function draw() {
translate(400,300);
frameRate(3);
stroke(random(255),random(255),random(255));
line(-200,0,100+100*cos(2*PI*i/N),100*sin(2*PI*i/N));
i=i+1;
if (i>=N){
noLoop();
}
}