xxxxxxxxxx
23
function setup() {
initializeFields();
createCanvas(900, 700);
background(255);
noFill();
stroke(0, 40);
}
function draw() {
var t = float(frameCount);
translate(width / 2, height / 2);
fill(255, 5);
ellipse(sin(t / 50) * t / 16, cos(t / 50) * t / 16, 60, 60);
}
function keyReleased() {
if (key == 's' || key == 'S') {
save("Frames/image-" + frameCount + ".jpg");
}
}
function initializeFields() {
}