Last active
November 6, 2017 12:20
-
-
Save jacopocolo/6bc7e3bcd6f541ccbdb95dd09174a5a7 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, 300); | |
| background(0,0,0); | |
| noStroke(); | |
| } | |
| function draw() { | |
| fill(204,204,204); | |
| triangle(12, 12, 12, 200, 81, 200); | |
| fill(102,102,102); | |
| rect(81, 81, 63, 63); | |
| fill(204,204,204); | |
| quad(189, 18, 216, 18, 216, 278, 144, 278); | |
| fill(255,255,255); | |
| ellipse(252, 144, 72, 72); | |
| fill(204,204,204); | |
| triangle(388, 18, 251, 278, 388, 278); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment