Skip to content

Instantly share code, notes, and snippets.

@bogoreh
Created March 7, 2021 14:09
Show Gist options
  • Select an option

  • Save bogoreh/64458b11a1bfbf1500496bbfdb810a44 to your computer and use it in GitHub Desktop.

Select an option

Save bogoreh/64458b11a1bfbf1500496bbfdb810a44 to your computer and use it in GitHub Desktop.
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