xxxxxxxxxx
27
let W=500;
let H=500;
let n=3;
let r=150;
function setup() {
createCanvas(W, H);
frameRate(1);
}
function draw() {
background(255,255,255);
push();
translate(W/2,H/2);
noFill();
stroke('red');
circle(0,0,2*r);
push();
stroke('green');
for (i=1;i<=n;i++){
line(r*cos(2*(i-1)*PI/n),r*sin(2*(i-1)*PI/n),r*cos(2*(i)*PI/n),r*sin(2*(i)*PI/n));
}
pop();
pop();
n=n+1;
}