Created
March 7, 2021 14:09
-
-
Save bogoreh/64458b11a1bfbf1500496bbfdb810a44 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
| background(204, 243, 255); | |
| //clouds | |
| fill(255, 255, 255); | |
| rect(20,42,75,55,465); | |
| rect(201, 130, 75, 55, 465); | |
| rect(336, 58, 75, 55, 465); | |
| //textbubble | |
| fill(255, 158, 158); | |
| ellipse(158, 171, 117, 54); | |
| triangle(132, 196, 184, 198, 156, 221); | |
| fill(0, 255, 132); | |
| ellipse(347, 198, 117, 54); | |
| triangle(132, 263, 386, 220, 336, 218); | |
| var SmileyFace = function(centerX, centerY){ | |
| this.centerX = centerX; | |
| this.centerY = centerY; | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment