Created
January 20, 2016 16:47
-
-
Save claytical/a1da528ceb3b7ddd9d06 to your computer and use it in GitHub Desktop.
Random
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(400,400); | |
| } | |
| function draw() { | |
| var x = random(width); | |
| var y = random(height); | |
| fill(127,10); | |
| stroke(100,90); | |
| ellipse(x, y, 50, 50); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment