Skip to content

Instantly share code, notes, and snippets.

@leanda
Created June 8, 2017 10:33
Show Gist options
  • Save leanda/cf0135a546ec9fcedfa864f6a2406da5 to your computer and use it in GitHub Desktop.
Save leanda/cf0135a546ec9fcedfa864f6a2406da5 to your computer and use it in GitHub Desktop.
p5 Nested Loops
function setup() {
createCanvas(600, 600);
}
function draw() {
background(255);
for (var i=25; i<width; i+=100) {
for (var j=25; j<height; j+=100) {
ellipse (i, j, 20, 20);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment