xxxxxxxxxx
22
function rotatedEllipse(x, y, w, h, angle) {
translate(x, y);
rotate(radians(angle));
ellipse(0, 0, w, h);
rotate(radians(-angle));
translate(-x, -y);
}
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220, 10, 100);
rotatedEllipse(50, 50, 40, 80, 45);
rotatedEllipse(150, 50, 40, 80, 65);
rotatedEllipse(250, 50, 40, 80, 85);
}