Created
December 18, 2016 17:27
-
-
Save Lellahahaha/d3a90ae03c33f5dd45848d03e7a4c88d 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,400); | |
| } | |
| function draw() { | |
| var a = 0; | |
| var b = 200; | |
| noStroke(); | |
| fill(60); | |
| ellipse(b,b,b+150,b+150); | |
| strokeWeight(30); | |
| stroke(255); | |
| line(a,b-100,b*2,b); | |
| line(a,b,b*2,b-30); | |
| line(a,b+70,b*2,b+110); | |
| line(a,b-140,b*2,b/4); | |
| strokeWeight(2); | |
| line(b-20,b*2,b+100,a); | |
| line(b-5,b*2,b+70,a); | |
| line(b-10,b*2,b+80,a); | |
| line(b-25,b*2,b+10,a); | |
| line(b-70,b*2,b-170,a); | |
| line(b-140,b+130,b-40,a); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment