Created
June 8, 2017 10:08
-
-
Save leanda/6efd79583f6a8862463c5f0fb1c62000 to your computer and use it in GitHub Desktop.
p5 Repeating line
This file contains 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(100); | |
for (var i=0; i<width; i+=10) { | |
line(i, 0, i, height); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment