/* built with Studio Sketchpad:
* https://sketchpad.cc
*
* observe the evolution of this sketch:
* https://dflab.sketchpad.cc/sp/pad/view/ro.z14Pfh--Mzo/rev.356
*
* authors:
* André Reis
* license (unless otherwise specified):
* creative commons attribution-share alike 3.0 license.
* https://creativecommons.org/licenses/by-sa/3.0/
*/
// This sketch builds on a prior work, "tuga", created by André Reis
// http://dflab.sketchpad.cc/sp/pad/view/ro.93vDdO1vEQIA3w/rev.465
size(300, 300);
background(20, 60, 100);
stroke (0, 200, 0);
strokeWeight (1);
fill(250, 200, 100);
triangle (75,50,50,100, 100,100);
triangle (225,50,250,100, 200,100);
fill(250, 0, 0);
stroke (250, 0, 0);
ellipse (150,150, 50,50);
fill(250, 0, 0);
stroke (250, 0, 0);
ellipse (150,250, 200,50);
fill(20, 60, 100);
stroke (20, 60, 100);
beginShape();
vertex (50, 215);
vertex(50,250);
vertex(250,250);
vertex(250,215);
endShape(CLOSE);