xxxxxxxxxx
35
let rectangle;
let angle;
function setup() {
rectangle = {
w: 50,
h: 100,
};
angle = 0;
createCanvas(windowWidth, windowHeight);
background("black");
noStroke();
angleMode(DEGREES);
rectMode(CENTER);
}
function draw() {
angle += 0.1;
background("black");
translate(mouseX, mouseY);
for (let i = 0; i < 21; i++) {
push();
rotate(-30 * i + angle);
fill("white");
stroke("white");
arc(sin(angle), 50, width, 5, 2, PI / 0.1);
pop();
}
describe("A pink square with a red heart in the bottom-right corner.");
}