xxxxxxxxxx
20
function setup() {
createCanvas(400, 400);
angleMode(DEGREES);
noStroke();
}
function draw() {
background(0);
translate(width/2, height/2);
rotate(frameCount * -4);
// Init
let d = 0;
// Test
while(d < width) {
// Statements
rotate(1);
ellipse(d, 0, 50);
// Update
d = d + 0.25;
}
}