xxxxxxxxxx
48
function setup(){
frameRate(12);
createCanvas(400,400)
background(220, 255, 220);
noStroke();
fill(255,100,255);
polygon(200,200,100,N);
}
var N = 4;
var R = 50;
var X = 200;
var Y = 200;
function draw() {
background(220, 255, 220);
fill(255,100,255);
polygon(X,Y,R,N);
if (mouseIsPressed) {
N = N + 1
}
}
function polygon(x, y, radius, npoints) {
//degrees = radians × 180° / π
//radians = degrees × π /180°
var angle = TWO_PI / npoints; // TWO_PI is the equivalent of 360 degrees
console.log("radians: " + angle);
console.log("degrees: " + (angle *180/PI));
beginShape();
for (var a = 0; a <= TWO_PI; a = a + angle) {
var sx = x + cos(a) * radius;
var sy = y + sin(a) * radius;
vertex(sx, sy);
console.log("sx, sy: " + sx + ", " + sy);
}
endShape();
}