You are on page 1of 1

Part 2

function setup() {

createCanvas(400, 400);

background(250);

x=0

frameRate(10);

function draw() {

for (let i=0; i<100;i++);

fill(0,250,0,50);

stroke(20);

ellipse(10+x,10+x,100+x, 100+x);

x=x+20

You might also like