xxxxxxxxxx
28
function setup() {
createCanvas(windowWidth, windowHeight);
noLoop();
}
function draw() {
background(220);
translate(width / 2, height / 2);
noFill();
strokeWeight(4);
stroke(255, 0, 50);
let maxRadius = min(width / 2, height / 2);
beginShape();
for (let a = 0; a < 360; a += 1) {
let t = radians(a);
let xu = 16 * sin(t) * sin(t) * sin(t);
let yu = 13 * cos(1 * t) - 5 * cos(2 * t) - 2 * cos(3 * t) - 1 * cos(4 * t);
let x = (maxRadius * xu) / 16;
let y = -(maxRadius * yu) / 16;
vertex(x, y);
}
endShape();
}