// Cloned by Martin Derwin on 27 Sep 2022 from World "Tutorial 4.1 (0)" by "Coding Train" project
// Please leave this clone trail here.
/*
https://vimeo.com/channels/learningp5js/139013336
*/
function setup() {
createCanvas(600, 400);
}
function draw() {
background(0);
strokeWeight(4);
stroke(255);
var x = 0;
while (x <= width) {
fill(0, 200, 255);
ellipse(x, 200, 25, 25);
x = x + 50;
}
for (x = 0; x <= width; x += 50) {
fill(255, 0, 200);
ellipse(x, 300, 25, 25);
}
}