Last active
November 27, 2016 18:06
-
-
Save Lellahahaha/a8943555e0af8aba3a8795f199d33522 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 (400, 600); | |
| } | |
| function draw() { | |
| fill(0); | |
| noStroke(); | |
| ellipse(70,70,70); | |
| ellipse(70,150,70); | |
| ellipse(70,230,70); | |
| ellipse(180,100,70); | |
| ellipse(180,150,70); | |
| ellipse(180,200,70); | |
| rect(300,40,60,60); | |
| rect(300,118,60,60); | |
| rect(300,196,60,60); | |
| rect(300,80,60,60); | |
| rect(300,118,60,60); | |
| rect(300,196,60,60); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment