xxxxxxxxxx
34
function heart() {
ellipse(-35.5, -24, 100);
ellipse(35.5, -24, 100);
triangle(-80, 0, 80, 0, 0, 96);
}
function setup() {
createCanvas(windowWidth, windowHeight);
noLoop();
}
function draw() {
background(220, 10, 120);
fill(250, 190, 0);
noStroke();
push();
translate(90, 80);
for (let i = 0; i < 5; i++) {
push();
for (let j = 0; j < 5; j++) {
push();
rotate(radians(random(-180, 180)));
scale(random(0.3, 1.3));
heart();
pop();
translate(180, 0);
}
pop();
translate(0, 180);
}
pop();
}