Created
November 27, 2016 18:02
-
-
Save Lellahahaha/19cf7fab82723cef07814e4b95082a8b to your computer and use it in GitHub Desktop.
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, 200); | |
| } | |
| var a = 40; | |
| var b = 40; | |
| var c = 40; | |
| function draw() { | |
| ellipse(40,b,c); | |
| var a = a+50; | |
| ellipse(90,b,c); | |
| ellipse(140,b,c); | |
| ellipse(190,b,c); | |
| ellipse(240,b,c); | |
| ellipse(340,b,c); | |
| ellipse(390,b,c); | |
| triangle(270,60,290,20,310,60); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment