You are on page 1of 1

Part3

function setup() {

createCanvas(400, 400);

background(250);

x=0

frameRate(10);

function draw() {

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

fill(0,250-x,0,100);

stroke(20);

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

x=x+20

You might also like