xxxxxxxxxx
21
function setup() {
initializeFields();
createCanvas(900, 700);
background(255);
}
function draw() {
var t = float(frameCount);
translate(0, height / 2);
stroke(random(0,255), 150, 150);
ellipse(t, cos(t / 20) * 100, 50, 50);
}
function keyReleased() {
if (key == 's' || key == 'S') {
save("Frames/image-" + frameCount + ".jpg");
}
}
function initializeFields() {
}