Created
June 8, 2017 10:33
-
-
Save leanda/cf0135a546ec9fcedfa864f6a2406da5 to your computer and use it in GitHub Desktop.
p5 Nested Loops
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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