Created
March 6, 2021 11:56
-
-
Save bogoreh/acc082bbaed6de0e20f31613fa4a2071 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
| var x = 200; | |
| var y = 250; | |
| noStroke(); | |
| fill(30, 204, 91); // a nice froggy green! | |
| ellipse(x, y, 200, 100); // face | |
| ellipse(x - 50, y - 50, 40, 40); // left eye socket | |
| ellipse(x + 50, y - 50, 40, 40); // right eye socket | |
| ellipse(x,y,20,60); | |
| fill(255,255,255); // for the whites of the eyes ! | |
| ellipse(x - 50, y - 50, 30, 30); // left eyeball | |
| ellipse(x + 50, y - 50, 30, 30); // right eyeball | |
| fill(196, 124, 124); | |
| ellipse(x,y,100,88); | |
| rect(x+50,y-52,10,10); | |
| rect(x-51,y-52,10,10); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment